颤抖的AndroidManifest警告-当前最小值为1

时间:2018-12-24 18:21:55

标签: android flutter build.gradle android-manifest android-min-sdk

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项目从未遇到过这些警告,并且仍然可以正常工作。

我尝试过的事情:

  1. 文件>使高速缓存无效/重新启动...。>使无效并重新启动
  2. 只需重启
  3. 从头开始创建另一个项目

解决警告的原因:

<uses-sdk android:minSdkVersion="16"
 android:targetSdkVersion="28" />

AndroidManifest.xml 中使用<uses-sdk.../>可以解决警告(当前最小值为1),但因此使 app / build.gradle 文件的使用无效。有什么建议吗?

我正在使用Android Studio 3.2.1

0 个答案:

没有答案