1

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>
Ankit
  • 6,554
  • 6
  • 49
  • 71
  • 1
    Possible duplicate of [Missing support for Firebase App Indexing (android lint)](https://stackoverflow.com/questions/34173545/missing-support-for-firebase-app-indexing-android-lint) – Manohar Apr 17 '19 at 12:10
  • you do not have any activity with action view intent filter `` – Manohar Apr 17 '19 at 12:12

3 Answers3

2

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

Just add inside application tag

<application
tools:ignore="GoogleAppIndexingWarning">
Navin Kumar
  • 3,393
  • 3
  • 21
  • 46
0
<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>
Hardik Bhalala
  • 209
  • 2
  • 6