Android Studio报错:the minSdk version should not be declared in the android manifest file 解决办法

Android Studio报错:the minSdk version should not be declared in the android manifest file 解决办法

全部报错:

ERROR: The minSdk version should not be declared in the android manifest file. You can move the version from the manifest to the defaultConfig in the build.gradle file.
Remove minSdkVersion and sync project
Affected Modules: app

翻译如下:

minSdk版本不应该在android清单文件中声明。您可以将版本从清单移动到build.gradle文件中的默认Config。

于是用 Everything 在工程目录下查找Mainfast.xml文件
Android Studio报错:the minSdk version should not be declared in the android manifest file 解决办法_第1张图片
工程里面有5个文件,打开一看
Android Studio报错:the minSdk version should not be declared in the android manifest file 解决办法_第2张图片
果然里面有minSdkVersiontargetSdkVersion 的定义(网上有说targetSdkVersion也要一并删除的,于是一起删了),直接删除

对5个文件做相同处理

搞定!
在这里插入图片描述

你可能感兴趣的:(java)