- 高版本Android studio创建项目时出现:App is
- Conflict with dependency 'com.an
- Build was configured to prefer s
- android studio 找不到 include c++ s
- ERROR: Could not install Gradle
- androidStudio app作为依赖库遇到的问题
- 当android studio遇到:Could not dete
- ERROR: Cause: unable to find val
- Android中使用Espresso进行UI测试
- Android Resource linking failed
高版本的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
}
}










网友评论