GoogleAppIndexingWarningという警告が表示された場合の対処法について

f:id:moshimore:20181009095645p:plain
AndroidManifest.xmlに以下のGoogleAppIndexingWarningという警告が表示された場合の対処法についての紹介です。

App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW internete fileter.
Adds URLs to get your app into the Google index, to get installs and traffic to your app from Google Search.

Issue id: GoogleAppIndexingWarning

More info;
https://g.co/AppIndexing/AndroidStudio

警告を非表示にしたい場合

とりあえず、この警告を非表示にしたい場合は以下のようにします。

AndroidManifest.xmlのmanifestタグ内に以下を追加します。

xmlns:tools="http://schemas.android.com/tools"

applicationタグ内に以下を追加します。

tools:ignore="GoogleAppIndexingWarning"

これで警告は表示されなくなります。

以上、GoogleAppIndexingWarningという警告が表示された場合の対処法についてでした。