Android studioプロジェクトリストファイルを削除黄色の警告

669 ワード

黄色の警告: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.  Issue id: GoogleAppIndexingWarning  More info: https://g.co/AppIndexing/AndroidStudio
app下のbuildを除去する.gradleのandroid{}に追加
lintOptions {
disable 'GoogleAppIndexingWarning'
}
できます.例:
android {
...
lintOptions {
    disable 'GoogleAppIndexingWarning'
}
...
}