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'
警告最近开始发生,没有任何新升级。我较早的flutter项目从未遇到过这些警告,并且仍然可以正常工作。
我尝试过的事情:
解决警告的原因:
<uses-sdk android:minSdkVersion="16"
android:targetSdkVersion="28" />
在 AndroidManifest.xml 中使用<uses-sdk.../>
可以解决警告(当前最小值为1),但因此使 app / build.gradle 文件的使用无效。有什么建议吗?
我正在使用Android Studio 3.2.1