我需要将minsdk降级以保持与某些设备的兼容性,因此我需要从minsdk16降级我的版本-> 15。 但是我有这个错误:
清单合并失败:uses-sdk:minSdkVersion 15不能更小 比库中声明的版本16 [com.github.flipagram:android-assetcopier:0.1.1] C:\ Users \ beto_.gradle \ caches \ transforms-1 \ files-1.1 \ android-assetcopier-0.1.1.aar \ 7ee049aa00fd85016b1a1ae60ce050df \ AndroidManifest.xml 因为该库可能正在使用15建议中不提供的API: 使用兼容的库,其minSdk最多为15,或者增加 此项目的minSdk版本至少为16,或使用 工具:overrideLibrary =“ flipagram.assetcopylib”强制使用(可能 导致运行时失败)
这是我当前的build.grandle,但是当我将minsdk更改为16时,得到之前显示的错误。
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "my.package.id"
minSdkVersion 15
targetSdkVersion 28
versionCode 510
versionName "5.1.0"
manifestPlaceholders = [manifestApplicationId : "${applicationId}",
onesignal_app_id : "myonesingeid",
onesignal_google_project_number: "myprojectnumber"]
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
implementation 'go.swlib.gojni:swlib:1.0@aar'
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.onesignal:OneSignal:3.+@aar'
implementation 'com.google.android.gms:play-services-gcm:16.0.0'
implementation "com.google.android.gms:play-services-location:16.0.0"
implementation 'com.google.android.gms:play-services-ads:17.1.2'
implementation 'com.github.quentin7b:android-location-tracker:3.2'
implementation 'com.google.firebase:firebase-core:16.0.6'
implementation 'com.google.firebase:firebase-messaging:17.3.4'
// implementation 'com.google.firebase:firebase-ads:17.1.2'
implementation 'com.google.firebase:firebase-crash:16.2.1'
implementation 'org.jetbrains:annotations-java5:15.0'
implementation 'com.github.hotchemi:android-rate:1.0.1'
implementation 'com.github.flipagram:android-assetcopier:0.1.1'
}
apply plugin: 'com.google.gms.google-services'
如果我理解得很好,我的错误就在于这种依赖关系:
implementation 'com.github.flipagram:android-assetcopier:0.1.1'
希望您能提供帮助! 谢谢!
答案 0 :(得分:2)
使用最新版本的Firebase库所需的最低SDK级别为16。除了备份到这些库的较旧版本之外,没有其他解决方法。
在documentation中指出:
先决条件
正在运行的设备:
- Android 4.1(API级别16,Jelly Bean)或更高版本
- Google Play服务15.0.0或更高版本
答案 1 :(得分:1)
在打开Android Studio的情况下,在菜单中选择:
文件>项目结构
在“项目结构”窗口中,选择:
先配置模块,然后配置默认
在Min SDK Version文本字段中,输入16,然后单击OK
答案 2 :(得分:0)
将最低SDK级别更改为minSdkVersion 16
。