当通过向导创建新项目并给出错误时,它会非常沮丧。
我只是使用MinSdk = 9创建新项目,以使应用程序在姜饼上运行 这给了我以下错误:
Error:Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed : uses-sdk:minSdkVersion 9 cannot be smaller than version 14 declared in library [com.android.support:appcompat-v7:26.0.0-alpha1] C:\Users\USER\.android\build-cache\dfb3187f39ea1ff94009f5d34353fff5cfc3daee\output\AndroidManifest.xml
Suggestion: use tools:overrideLibrary="android.support.v7.appcompat" to force usage
这里是gradle文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "com.example.com.testApp"
minSdkVersion 9
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.0.0-alpha1'
testCompile 'junit:junit:4.12'
}
如何解决这个问题?
答案 0 :(得分:6)
您必须使用旧版本的支持库。
compileSdkVersion 25
compile 'com.android.support:appcompat-v7:25.4.0'
正如您可以在26.0.0 here
的发行说明中找到的那样注意:最低SDK版本已增加到14.因此, 许多API仅存在于API< 14兼容性 弃用。这些API的客户端应迁移到其框架 每个弃用的API的参考页面中提到的等价物。
答案 1 :(得分:1)
删除此compile 'com.android.support:appcompat-v7:26.0.0-alpha1'
或者将compileSdkVersion 26
更改为compileSdkVersion 25
并使用该版本的库