--- title: Android Setup | App Indexing description: Setup your Android application to handle app indexed URLs. --- # Android Manual Linking Your Android application needs to be setup to detect whether URLs which a user navigates to on your device are to be handled by your application. To set this up, add a new `intent-filter` to your manifest file. The example below will trigger the app indexing module to handle URLs from any `https://invertase.io/blog` URL. `android/app/src/main/AndroidManifest.xml`: ```xml ```