Resolve App is not Indexable Warning in Android Studio
One common warning in android development is the App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent-filler, and what this means is that you should add some intent filter in your manifest file, so, possibly the app contents can be deep searched by Google.
How to Fix App is not Indexable by google search Warning?
It is easy to fix, remember that we will only hide the warning with this codes, this will not make the app support Google indexing.
Just add this line of XML code in your android manifest’s intent-filter inside the launcher activity’s xml
<action android:name="android.intent.action.VIEW" />
Example here
<activity android:name=".Splash" android:label="@string/app_name" android:theme="@style/mytheme"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> <action android:name="android.intent.action.VIEW" /> </intent-filter> </activity>