欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

关于禁止 Android Studio 的 Lint 检测 Google search deep link 的方法教程

程序员文章站 2022-11-20 12:15:53
在高版本的 android studio 中新建项目,在 manifest.xml 文件中会有黄色警告: app is not indexable by google search; conside...

在高版本的 android studio 中新建项目,在 manifest.xml 文件中会有黄色警告:

app is not indexable by google search; consider adding at least one activity with an action-view intent filter.

对于国内的开发者来说,如果项目中有搜索项,通常也是使用公司自己的搜索功能,所以这个 google search 就用不上了。

对于部分代码洁癖者,这一大片的黄色警告,很碍眼,怎么去除呢?非常简单:

在我们的app.gradle( module:app)中添加 lint 忽略规则即可

android {
 compilesdkversion 28
 defaultconfig {
 ...
 }
 buildtypes {
  release {
minifyenabled false
proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro'
  }
 }

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