Android - Adding At Least One Activity With An ACTION-VIEW Intent-filter After Updating SDK Version 23
Answer : From official documentation : To enable Google to crawl your app content and allow users to enter your app from search results, you must add intent filters for the relevant activities in your app manifest. These intent filters allow deep linking to the content in any of your activities. For example, the user might click on a deep link to view a page within a shopping app that describes a product offering that the user is searching for. Using this link Enabling Deep Links for App Content you'll see how to use it. And using this Test Your App Indexing Implementation how to test it. The following XML snippet shows how you might specify an intent filter in your manifest for deep linking. <activity android:name="com.example.android.GizmosActivity" android:label="@string/title_gizmos" > <intent-filter android:label="@string/filter_title_viewgizmos"> <action android:name="android.intent.a...