Questions tagged [google-app-indexing]

59 questions
1
vote
1 answer

Why result.setResultCallback(new ResultCallback() is not getting called?

Currently i am implementing App indexing for android, onCreate,onStart and onStop methods are being called correctly but, result.setResultCallback(new ResultCallback() is not being called. what can be the reason for…
1
vote
1 answer

Android browser links aren't being redirected to the appropriate application

I've implementing Google App indexing on android, my application handles some deep links. So I expect that appropriate links from browser should be redirected to my app. But that doesn't happen. Any clue?
1
vote
1 answer

App index for apps not in Google Play

Do you have to put your android app in Google Play for App indexing? Or any downloadable android apps can be indexed once have deep links enabled? Cheers, Allen
1
vote
1 answer

Google app Indexing API title versus keywords

I'm implementing Google's app indexing API for my app, following this tutorial https://developers.google.com/app-indexing/introduction I was wondering if there is a distinction between the title of the google autocomplete suggestion for the app, and…
sophia
  • 395
  • 5
  • 13
1
vote
1 answer

Branch.io: Google App Indexing for links

I was reading the integration between Branch.io and google app indexing here: https://dev.branch.io/recipes/google_app_indexing/android/ Now, my app is similar to Facebook, its users can make post, comment on posts etc. Now, not every post gets…
Simon
  • 19,658
  • 27
  • 149
  • 217
1
vote
1 answer

failing to embed 'GoogleAppIndexing' pod to IOS app

Im having hard time to build the project after adding GoogleAppIndexing (deep linking) pod to my project. Google's Install Instructions Im a newbie in IOS , in fact i know very little about objC, My app is written in react native. Im getting these…
doron aviguy
  • 2,554
  • 2
  • 22
  • 18
0
votes
1 answer

Does Google Search App block universal links

I am implementing Firebase App Indexing as mentioned in official firebase documentation here: https://firebase.google.com/docs/app-indexing/ios/app. The universal links are enabled and work fine for search results from different browsers like…
0
votes
0 answers

How to test if the google search app indexing is working or not?

I have verified the domain name on search console and I have added intent filters in my app. I can open the app using the adb command adb shell am start -a android.intent.action.VIEW -d "http://www.mywebsite.com/path" com.my.package.debug and it…
0
votes
1 answer

Crawl status saying it can't find any pages to index in my android app

Although I followed the below guide on my app (up to 7th step because I'm not interested in personal contents or on-device indexing): Firebase appIndexing tutorial And connected my app to firebase consol. Also verified steps against "Get Started"…
0
votes
1 answer

Xamarin iOS Universal Links - can not set checkbox Enable Associated Domains

In Xamarin iOS, I am using the Google App Indexing component. I have gone through all the prerequisites but am having this issue with the Entitlements: When I open the Entitlements.plist in Xamarin, and click on the "Enable Associated Domains"…
0
votes
1 answer

How to implement app indexing with library project?

I'm trying to implement app indexing for one of my apps, but I'm not quite sure what I should return as the appUri for the app indexing Action. Let's say I have a the package name com.example.myapp and the webUri http://example.com/some/path. As I…
0
votes
1 answer

android app content firebase indexing

I want to show my app content in Mobile app of Google Search whenever user search in google app.so that my app can shows in list with my app content.. in other words i am looking for enable personal content firebase indexing .. i went through lot…
0
votes
1 answer

Firebase App Indexing test Failing while Firebase API is called

Please view the above image. I am using the Firebase App Indexing test for my Android app. I have followed the official App Indexing tutorial, but still, I am getting this error. Things I have done: Implemented Firebase App Indexing API in…
0
votes
1 answer

universal links with redirects using google url shortener

The use case is, essentially, this: the user create some content and uploads it to our server. our server responds with the URL. the user sends the URL (eg via text message) to another user. the other user clicks on the URL. If they have the app…
0
votes
1 answer

App indexing on iOS: How is Firebase App Indexing different from Mark Up Web Content

I was reading about app indexing for iOS, First thing I found was Firebase App Indexing, which is pretty straight forward. Then I came across Mark Up Web Content, how is this different from Google's. If I have to do app indexing for my app should I…