Android Studioの “App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent filter.” 警告への対処
Android Studio 3.5.3でアプリをGitでコミットしようとしたら,app/src/main/AndroidManifest.xml
で以下の警告が出てしまった。
Warning:(5, 5) 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.
AndroidManifest.xml
にACTION-VIEWインテントフィルターがないため,アプリがGoogle検索にインデックスされないという指摘のようだ。
対処方法を調べたところ,公式文書「アプリ コンテンツへのディープリンクの作成 | Android デベロッパー | Android Developers」が見つかった。
このサンプルのとおりに対応する。具体的には,AndroidManifest.xml
に以下の<action android:name="android.intent.action.VIEW" />
の1行を追加することで対応できた。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jp.senooken.android.edittextinlistview">
<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=".MainActivity">
<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>
</activity>
</application>
</manifest>
詳細は理解できていないが,警告が消え特に困ってもいないのでひとまずこれでよしとする。
リンク