0

I'm using "Fetch as Google" to test deep linking into my Android app. I uploaded an APK and tried a url. You can see the url in the image. I'm 100% sure that the first redacted section of the url matches the android:host in the manifest. Is this something I'm doing wrong, or is this tool just really flaky?

            <data
                android:host="com.myapp.pro"
                android:pathPrefix="/obj/"
                android:scheme="android-app"
                />

enter image description here

Ian Barber
  • 19,765
  • 3
  • 58
  • 58
Darthg8r
  • 12,377
  • 15
  • 63
  • 100

1 Answers1

1

App Indexing requires HTTP based URLs. Take a look at the examples with HTTP and HTTPS handlers in the documentation.

Ian Barber
  • 19,765
  • 3
  • 58
  • 58