AndroidManifest.xml文件给出警告 -
Attribute hardwareAccelerated is only used in API level 11 and higher(current min is 1)
Attribute windowSoftInputMode is only used in API level 3 and higher(current min is 1)
和
Should set android:versionCode to specify the application version
Should set android:versionName to specify the application version
还
App is not indexable by Google Search;
当 app/build.gradle 文件读取时 -
compileSdkVersion 28
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger() // 1
versionName flutterVersionName // '1.0'
警告最近开始出现,没有任何新的升级。我较旧的颤振项目从未遇到过这些警告,并且仍然可以正常工作。
我尝试过的事情:
- 文件 > 使缓存无效/重新启动.... > 无效并重新启动
- 只需重新启动
- 从一开始就创建一个不同的项目
什么解决了警告:
<uses-sdk android:minSdkVersion="16"
android:targetSdkVersion="28" />
<uses-sdk.../>
在AndroidManifest.xml中使用解决了警告(当前最小值为 1),但因此使app/build.gradle文件的使用无效。请问有什么建议吗?
我正在使用 Android Studio 3.2.1