gpt4 book ai didi

android - 如何将 Google Play 服务修订版与安装版本匹配?

转载 作者:IT老高 更新时间:2023-10-28 22:20:55 27 4
gpt4 key购买 nike

Android SDK Manager 今天早上通知我有一个新的 Google Play 服务版本可供下载:修订版 18。那么如何找到相应的长版本号并将其放入我的 build.gradle 文件中?我所有的测试设备都运行版本 5.0.84,所以我尝试更新

compile 'com.google.android.gms:play-services:4.4.52'

compile 'com.google.android.gms:play-services:5.0.84'

但这导致了一个错误:

Gradle 'MyApp' project refresh failed: Could not find com.google.android.gms:play-services:5.0.84. Required by: {my app} Gradle settings

我正在运行 Android Studio 0.5.2 并为 API19 构建(我还没有升级到 Android L/API20):也许这就是问题所在?但总的来说,如何将 SDK 管理器中显示的修订号(例如 18)与 build.gradle 的版本代码(例如 5.0.84)匹配?

这是我的完整 build.gradle,以防万一:

apply plugin: 'android'

android {
compileSdkVersion 19
buildToolsVersion "19.1.0"

defaultConfig {
minSdkVersion 14
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}

// Avoid "Duplicate files copied in APK" errors when using Jackson
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
}
}

dependencies {
// Was "compile 'com.android.support:support-v4:+'" but this caused build errors when L SDK released
compile 'com.android.support:support-v4:19.1.0'
compile fileTree(dir: 'libs', include: ['*.jar'])

// Support for Google Cloud Messaging
// Was "compile 'com.android.support:appcompat-v7:+'" but this caused build errors when L SDK released
compile 'com.android.support:appcompat-v7:19.1.0'
compile 'com.google.android.gms:play-services:5.0.84'

// Jackson
compile 'com.fasterxml.jackson.core:jackson-core:2.3.3'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.3.3'
compile 'com.fasterxml.jackson.core:jackson-databind:2.3.3'
}

最佳答案

好的,我还没有完全找到一个到另一个的映射,但我已经完成了下一个最好的事情,那就是查看我的开发计算机上安装的 Play Services 长版本号列表。

对于 Windows,它位于 [android-sdk]\extras\google\m2repository\com\google\android\gms\play-services(其中 [android-sdk] 是您的 Android SDK 文件夹的路径)。

在 Mac 上,它位于 Android.app 包中:浏览到 sdk/extras/google/m2repository/com/google/android/gms/play-services

我机器上的最新版本是 5.0.77(不是 5.0.84),将它放在我的 build.gradle 中效果很好。

您应该在该位置看到以下内容:

Google Play Services versions on Windows

Google Play Services versions on OSX

关于android - 如何将 Google Play 服务修订版与安装版本匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24548032/

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