美文网首页
高版本Android studio创建项目时出现:App is

高版本Android studio创建项目时出现:App is

作者: 程序员小华 | 来源:发表于2018-12-24 16:22 被阅读0次

高版本的android studio中创建android项目时,默认情况下AndroidManifest.xml文件会出现以下的黄色警告:

App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent filter

不过对于我们来说,google search一般情况下是使用不上的,可以通过在项目app module的build.gradle添加以下代码忽略:

android {
    ...

    lintOptions {
        disable 'GoogleAppIndexingWarning'
        baseline file("lint-baseline.xml") // your choice of filename/path here
    }
}

相关文章

网友评论

      本文标题:高版本Android studio创建项目时出现:App is

      本文链接:https://www.haomeiwen.com/subject/mmuzkqtx.html