I have used this Firebase Tutorial URL <https://firebase.google.com/docs/app-indexing/android/public-content> for integrating App Indexing in my Android and iOS application.
I reviewed the sample application provided and it is working fine, but when I am integrating it in my application, but in my AndroidManifest.xml I got confused with this following code snippet:
<data android:scheme="http"
android:host="recipe-app.com"
android:pathPrefix="/recipe" />
My questions are:
- What is recipe-app.com and pathPrefix, what are the things I need to do to make App Indexing work in my application?
- Is there any descriptive tutorials for Integrating App Indexing in Android apart from Firebase official link?
- Where should I put digital assets link file on the server?