1
votes

App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent filter. See issue explanation for more details. less... (Ctrl+F1) Inspection info:Adds URLs to get your app into the Google index, to get installs and traffic to your app from Google Search.

But I Have already considered one activity with an action view intent filter. Please help.

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

    <activity android:name=".StartActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity android:name=".RegisterActivity"
        android:parentActivityName=".StartActivity"/>
    <activity android:name=".MainActivity" />
    <activity android:name=".LoginActivity"
        android:parentActivityName=".StartActivity"/>



</application>
3
you do not have any activity with action view intent filter <action android:name="android.intent.action.VIEW" />Manohar

3 Answers

2
votes

Add android.intent.action.VIEW into your launcher activity like below.

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <action android:name="android.intent.action.VIEW"/>

    <category android:name="android.intent.category.LAUNCHER" />

</intent-filter>
1
votes

Just add inside application tag

<application
tools:ignore="GoogleAppIndexingWarning">
0
votes
<application
    android:allowBackup="true"
    tools:ignore="GoogleAppIndexingWarning"    **// Add this Statement Here,**
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

    <activity android:name=".StartActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity android:name=".RegisterActivity"
        android:parentActivityName=".StartActivity"/>
    <activity android:name=".MainActivity" />
    <activity android:name=".LoginActivity"
        android:parentActivityName=".StartActivity"/>



</application>