Questions tagged [android-app-indexing]

App indexing allows us to enable Google to crawl through an android app's content and present it to users through Google Search results.

Users on mobile devices can then click on a link to open our app from their search results, allowing them to directly view the app's content instead of a web page. This can be done by providing Google with information about the relationship between an app and its website.

This process involves the following steps:

  1. Enabling deep linking to specific content in the app by adding intent filters in the app's manifest.
  2. Annotating these links in the associated web pages on the web site or in a Sitemap file.
  3. Opting in to allow Googlebot to crawl through the APK in the Google Play store to index the app content.

The complete developer documentation can be found here and here.

145 questions
4
votes
0 answers

App Indexing: We can’t find the APK for Android app

I am trying to do Android App Indexing. I followed all steps on Google documentation. When I test the implementation, it says Google did not find App content associated with the URL. APP URL: android-app://com.package.name/http/www.example.com Web…
4
votes
0 answers

My implementation of app indexing is not working

Here is my activity structure: SplashActivity -> MainActivity. My MainActivity has a Spinner that is populated from ContentProvider. Based on Spinner selection, I present different content to the user. The content map perfectly to the content on my…
4
votes
1 answer

android app indexing api description field

The official tutorial explains very clearly how to get an app's specific page to appear in google autocomplete. When I follow the description I can go from the autocomplete suggestion back to the page in the app. The autocomplete suggestion has the…
lf215
  • 1,185
  • 7
  • 41
  • 83
4
votes
2 answers

Google App Indexing - how to test it?

I've implemented all the things about App Indexing from google tutorial Google App Indexing. How can I now test result of search in safari? Should I have released app/can I test it in development environment without submitting to iTunes…
edzio27
  • 4,126
  • 7
  • 33
  • 48
4
votes
1 answer

App Indexing Android - "" in "" doesn't work

We are struggling with the app indexing topic from google. The plan is to insert a tag in the -area of a website (crwaled from google) like this: android-app://com.testApp/myCustomScheme/car/ford and after that to visit this website with the…
4
votes
1 answer

App indexing for apps with a single main activity

Our android app has a single main activity. All subsequent screens have been implemented as fragments. We are trying to implement app indexing using the google developers guide. However, because there is a single main activity, only the home screen…
4
votes
3 answers

App Indexing "Open in App" doesn't work

So, I was trying to implement app indexing to allow "Open in App" feature from google search (in Chrome app). I've implemented the following sections from google docs https://developers.google.com/app-indexing/: Add Deep Linking to your…
ArunL
  • 350
  • 2
  • 14
3
votes
1 answer

SPLIT_BUNDLE 1555876812: Policy Declaration - Data Safety Section: App Activity Data Type - Apps On Device

I'm a publisher, and 2 days ago, i updated my app, but after like 2 hours I received this message(see the photo), and I don't know how to resolve it. I have tried all ways, but I don't understand how to fix it. Can you help me to resolve the…
App_dev
  • 39
  • 1
  • 3
3
votes
0 answers

Switching from default native App to mobile website in browser

I've implemented some intent-filters in the manifest of my Android app, so it handles some specified links. When a user opens the app via url, he has to pass a dialog where he can choose which app he wants to use. It's also possible to set the app…
mathew11
  • 3,382
  • 3
  • 25
  • 32
3
votes
1 answer

PackageManager: Not granting permission - Android M

I am using an app for some benchmarking purpose When I install the app I'm getting these logs from packagemanager. The android version is Marshmallow and I know that the app targetSdkVersion is 22 (so I expect this to work with M) 09-07 02:24:05.407…
3
votes
1 answer

Android deeplinking default handler

I am trying to use last default handling feature for deep linking site and app, introduced in Marshmallow release. I have done three steps, as described here (https://developer.android.com/training/app-links/index.html) I have created intent…
busylee
  • 2,540
  • 1
  • 16
  • 35
3
votes
0 answers

App is not indexed in Search results in test apk

I'm facing a strange issue in app Indexing. Our play store APK uses older version of app indexing API and is working fine. App is indexed for google search results. But, after I migrated to fire base and updated App Indexing API, app is not indexed…
3
votes
1 answer

Does Android still support Quick Search Box integration?

I read some information about Quick Search Box and downloaded the SearchableDictionary sample to understand how to make app content available in the global search. When I deploy the app to my phone (Android M) it does not show in the selection list…
sidecarcat
  • 482
  • 5
  • 12
3
votes
1 answer

App indexing Api: result callback is not called in OnStop()

I am implementing the app indexing API provided by google. As indicated here I connected the client in onStart() method like this: APP_URI = Uri.parse(baseAppUri + slug); WEB_URL = Uri.parse(baseWebUri + slug); Action viewAction =…
Saurabh
  • 434
  • 1
  • 4
  • 19
3
votes
0 answers

is App Indexing for iOS working?

Im trying to add the app Indexing, but the method [GSDDeepLink handleDeepLink:url]; is returning the same gsd-MY_URL:// when it's supposed to sanitize it to MY_URL://. As you can see here, App Indexing the snippet is really simple. My code is the…
subharb
  • 3,374
  • 8
  • 41
  • 72
1 2
3
9 10