我刚刚使用 Android Studio 创建了一个新项目 Android ,我选择了最小的SDK 9(Gingerbread)和活动{{ 1}},一旦选择并创建项目,我会收到以下错误:
NavigationDrawer Activity
我没有触及任何内容或修改任何创建Android Studio本身的内容,而且我已使用最新版本更新了SDK。
有什么建议吗?
摇篮:
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:design:26.0.0-alpha1] C:\xxx\xxx\.android\build-cache\bd439271136a9bc6f4bc228104359605401bab70\output\AndroidManifest.xml
Suggestion: use tools:overrideLibrary="android.support.design" to force usage
答案 0 :(得分:1)
里面发生的事情是。使用最低SDK版本14的Library支持设计。如果您的app minimumSdk版本低于该版本,则无法使用此库。
您应该使用<div class="page-top">
--some code here--
</div
来支持minSdkVersion 9。
如果您使用com.android.support:design:25.+
。您必须使用 minSdkVersion 14
像这样更新 gradle 。
com.android.support:design:26.0.0-alpha1
希望有所帮助:)
答案 1 :(得分:1)
我找到了两种消除此错误的解决方案,但我不知道哪一种是最正确的
I)下载版本,为此您必须使用版本25而不是26来修改build.gradle,如下所示:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "xx.xx.xx.seguros"
minSdkVersion 9
targetSdkVersion 25
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:25.+'
compile 'com.android.support:design:25.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
}
II)使用tools: overrideLibrary
,您必须通过添加以下内容来修改清单:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="es.uv.lisitt.seguros"
xmlns:tools="http://schemas.android.com/tools">
<uses-sdk tools:overrideLibrary="android.support.design, android.support.v7.appcompat,android.support.graphics.drawable, android.support.v7.recyclerview, android.support.v4, android.support.mediacompat, android.support.fragment, android.support.coreui, android.support.coreutils, android.support.compat"/>
.....
</manifest>
答案 2 :(得分:1)
>
希望有所帮助