gpt4 book ai didi

android - 更新 PlayServices 和 Firebase 的新版本 10.2.0 时出现问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:08:03 28 4
gpt4 key购买 nike

我使用 Android Studio 开发了一个 Android 应用程序,今天我收到消息说有新版本的 Google Play 服务和 Firebase。

From 10.0.1 to 10.2.0.

我仅使用 Google Play 服务分析和广告。

我已经在第 9 分钟选择了 API,现在我认为广告无法在 API < 14 中显示。

我的 build.gradle 文件:

 apply plugin: 'com.android.application'

android {

compileSdkVersion 25
buildToolsVersion "25.0.0"
defaultConfig {
applicationId "com.ilyo.x1application"
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.1.1'
compile 'com.google.firebase:firebase-ads:10.2.0'
compile 'com.google.firebase:firebase-core:10.2.0'
compile 'com.google.android.gms:play-services-ads:10.2.0'
testCompile 'junit:junit:4.12'
}

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

错误信息

Error:Execution failed for task ':app:processDebugManifest'. Manifest merger failed : uses-sdk:minSdkVersion 9 cannot be smaller than version 14 declared in library [com.google.firebase:firebase-ads:10.2.0]

/Users/mac/Documents/AndroidStudioProjects/Project1/app/build/intermediates/exploded-aar/com.google.firebase/firebase-ads/10.2.0/AndroidManifest.xml Suggestion: use tools:overrideLibrary="com.google.firebase.firebase_ads" to force usage

我希望我的应用程序的所有广告都能在所有设备上展示,您有什么建议?

最佳答案

所有 google 相关服务的 10.2.0 版本至少需要 API 版本 14。这是 Google 所做的选择,因此他们不必支持 14 以下的 API 版本。

因此,如果您想支持低于 14 的 API 版本,则必须永远坚持使用 10.0.1 版本。或者,您必须将应用的最低 API 版本提高到 14,然后才能使用新的 Google 服务。

文章:https://www.xda-developers.com/google-play-services-release-notes-are-available-for-the-10-2-update-bye-gingerbread/

关于android - 更新 PlayServices 和 Firebase 的新版本 10.2.0 时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42315548/

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