您有一份 AndroidX 升级指南未领取,androidsdk 环境配置
4.支持库迁移 AndroidX 速查表
复制代码
kit:1.0.0 |
5.一些问题
升级到 AS 3.2 版本后,Android Lint 增加了一些代码检测项,其中最为明显的就是 AndroidManifest.xml 中的警告:
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.
意思是当前 APP 不支持 Google 搜索,需要至少在一个 Activity 中添加 intent filter,没问题,满足你:
<action android:name="android.intent.action.VIEW" />
但是因为万里长城的原因,添加了这个 filter 也没什么用,不添加的话满页的黄色波浪又看着闹心,我们还可以这样做:
在 app 的 build.gradle 中添加一个警告忽略:
android {...lintOptions {disable 'GoogleAppIndexingWarning'}
评论