Software⏱️ 2 min read📅 2026-05-31

How to Fix: Missing support for Firebase App Indexing (android lint)

Fix Firebase App Indexing lint warning for SEO improvement.

Quick Answer: To make your app indexable by Google Search, add the `android:label` and `android:icon` attributes to at least one Activity with an `ACTION_VIEW` intent-filler. This will enable Firebase App Indexing and improve your app's visibility in search results.

The 'Missing support for Firebase App Indexing' lint warning in Android Studio is triggered when the app's activities are not indexed by Google Search. This can impact your app's visibility in search results, making it harder for users to find your app.

🔍 Why This Happens

  • Google App Indexing is a feature that allows your app to be discovered by Google Search. It works by indexing the content of your app's activities, making it easier for users to find relevant results.
  • However, Firebase App Indexing requires specific configuration and setup in order to work properly.

✅ Best Solutions to Fix It

Method 1: Enable Firebase App Indexing

  1. Step 1: Open your app's `build.gradle` file and add the following line of code to enable Firebase App Indexing:
`implementation 'com.google.firebase:firebase-appindexing:22.0.1'
Step 2:
: Ensure that you have added the necessary Firebase configuration files, such as `google-services.json` and `facebook-login.xml`, to your project.

Method 2: Configure Activity Intent-Filler

  1. Step 1: Open your app's `AndroidManifest.xml` file and add the following code to configure the activity intent-filler:
`
Step 2:
: Ensure that you have added the necessary meta-data tags to your app's `AndroidManifest.xml` file.

By following these steps, you should be able to resolve the 'Missing support for Firebase App Indexing' lint warning and make your app indexable by Google Search.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions