Reputation: 6181
I have read about App links assistant in a newest android studio version 2.3, what is difference between App links assistant and Firebase App indexing?
Upvotes: 1
Views: 2176
Reputation: 10529
Android Studio 2.3 come up with a new App Link Assistant which helps you build and have a consolidated view of your URIs in your app that makes app content searchable by Google. As mobile apps become more pervasive, users are looking for relevant information not only from websites but also from apps they have installed. you can enable App Link Assistant and present your Android app as a destination to users through Google Search results. You can make your existing web content discoverable to mobile clients that support App Links. When people click on links to your existing content through supported clients, they can load the content in your app instead of a web view.
Firebase app indexing is used to index content in your android app to make searching through the content of application easier and faster. After adding Android App Links to your app, you can add Firebase App Indexing code to an activity to get re-engagement to your app from additional Google Search features, including autocomplete suggestions and In Apps search. Learn more about Firebase App Indexing in the Firebase App Indexing documentation.
To add Firebase App Indexing to your app, use the Firebase Assistant in Android Studio and expand the App Indexing section for step-by-step instructions
References
Take a breath and go through the well-documented articles.
Upvotes: 2