gpt4 book ai didi

安卓,火力地堡 : Manifest merger failed : uses-sdk:minSdkVersion 15 cannot be smaller than version 16

转载 作者:搜寻专家 更新时间:2023-11-01 07:45:06 25 4
gpt4 key购买 nike

我的app/build.gradle:

apply plugin: 'com.android.application'

android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.example.firebase"
minSdkVersion 15
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.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'

compile 'com.google.firebase:firebase-auth:11.0.4'
compile 'com.firebaseui:firebase-ui-auth:2.3.0'
compile "com.android.support:design:26.1.0"
compile "com.android.support:customtabs:26.1.0"
compile "com.android.support:cardview-v7:26.1.0"

testCompile 'junit:junit:4.12'
}


apply plugin: 'com.google.gms.google-services'

但是当我尝试构建我的 Android 项目时出现错误:

Error:Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed : uses-sdk:minSdkVersion 15 cannot be smaller than version 16 declared in library [com.firebaseui:firebase-ui-auth:2.3.0]

我无法更改 minSdkVersion,因为这是客户的要求 - 在 min 上运行 Android 应用程序。 ver = 15

最佳答案

I can't change minSdkVersion because this is the client's requirement - run Adnroid application on min. ver = 15

不能它,因为你正在使用一些依赖 minSdk = 16 (在你的例子中,firebase-ui 有一个 minSdk=16)。

您可以选择旧版本的依赖项,但您以后总是会遇到问题,因为您将无法更新它们。

您可以在 official dashboard 中查看,今天 minSdk=16 你将覆盖超过 99% 的设备

无论如何,如果是客户的强烈要求可以create multiple APKs for Different API Levels .

这意味着您可以在 build.gradle 中使用不同级别的 api 和不同的依赖项创建不同的风格。通过这种方式,您将能够支持带有 api 15 的设备以及所用库的新版本。

productFlavors {

// priority than the second, and so on.
minApi15 {
minSdkVersion '15'
...
}

minApi16 {
minSdkVersion '16'
}
}

dependencies {
minApi15Compile xxxxx
minApi16Compile xxxxx
}

关于安卓,火力地堡 : Manifest merger failed : uses-sdk:minSdkVersion 15 cannot be smaller than version 16,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46300522/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com