Missing support for Firebase App Indexing (android lint)

Android StudioPermissionsAndroid ManifestWarningsAndroid Lint

Android Studio Problem Overview


I receive this lint warning when analysing my code (Analyse > Inspect Codes) on Android studios.

> App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent-filler. See issue explanation for more details.

What is this warning, and how do I make my app indexable by Google Search? it sounds important for SEO, but I can't find any details on Google.

I also like to know how to access the "Issue Explanation" from android studio.

enter image description here

Edit:

"App is not indexable by Google Search" was the old warning. The new warning is "Missing support for Firebase App Indexing"

Android Studio Solutions


Solution 1 - Android Studio

I found out how to access the "Issue Explanation". I need to hover over an inspection error to display the full issue explanation inline (and pressing Ctrl-F1)

enter image description here

so the keyword I am missing is "deep links"!

The following is the android developer page to do deep links "To enable Google to crawl your app content and allow users to enter your app from search results"

http://developer.android.com/training/app-indexing/deep-linking.html

the following is the code snippet on how to do a deep link. I got no idea how Google can crawl my app just by adding it though...

<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.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <!-- Accepts URIs that begin with "http://www.example.com/gizmos” -->
        <data android:scheme="http"
              android:host="www.example.com"
              android:pathPrefix="/gizmos" />
        <!-- note that the leading "/" is required for pathPrefix-->
        <!-- Accepts URIs that begin with "example://gizmos”
        <data android:scheme="example"
              android:host="gizmos" />
        -->
    </intent-filter>
</activity>

there is also a note which says

Note: Intent filters may only contain a single data element for a URI pattern. 
Create separate intent filters to capture additional URI patterns.

Solution 2 - Android Studio

Actually there are 2 ways to deal with 'app is not indexable by google' problem.

  1. Add deep link into the app as described above.

  2. Simply disable lint warning. Sometimes app is not published to Google Play so deep links will not be needed, etc:

    android {
    defaultConfig {
    // something
    }
    lintOptions {
    disable 'GoogleAppIndexingWarning'
    baseline file("lint-baseline.xml")
    }
    }
    

Solution 3 - Android Studio

You can remove the warning by adding the below code in <intent-filter> inside <activity>

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

Solution 4 - Android Studio

If you want disable this warning until your application development completes or if you don't have any web URL to add, add this line in your AndroidManifest.xml file.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          xmlns:tools="http://schemas.android.com/tools"
          package="com.example.yourappname">

   <application
       ...
       ...
       tools:ignore="GoogleAppIndexingWarning">

          ....

   </application>

</manifest>

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAngel KohView Question on Stackoverflow
Solution 1 - Android StudioAngel KohView Answer on Stackoverflow
Solution 2 - Android StudiozkvarzView Answer on Stackoverflow
Solution 3 - Android StudioBibin JohnyView Answer on Stackoverflow
Solution 4 - Android StudioShashanthView Answer on Stackoverflow