找不到任何匹配的版本 com.google.android.gms:play-services-base:[15.0.1,16.0.0)
Could not find any version that matches com.google.android.gms:play-services-base:[15.0.1,16.0.0)
我正在为我的 android 应用程序使用 firebase,当我尝试 运行 该应用程序时突然遇到错误。星期六它工作得很好。我不知道这个错误是怎么发生的以及如何解决这个问题。请帮我。
我的依赖项 build.gradle
dependencies {
compile('com.crashlytics.sdk.android:crashlytics:2.5.2@aar') {
transitive = true;
}
compile 'com.android.volley:volley:1.0.0'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:cardview-v7:23.4.0'
compile 'com.facebook.android:facebook-android-sdk:4.1.0'
compile 'com.google.code.gson:gson:2.8.4'
compile 'com.android.support:multidex:1.0.3'
compile 'com.microsoft.azure:azure-mobile-android:3.1.0'
compile 'com.mixpanel.android:mixpanel-android:4.8.0'
compile 'com.firebase:firebase-client-android:2.4.0'
compile 'com.google.firebase:firebase-core:16.0.0'
compile 'com.google.firebase:firebase-auth:16.0.1'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.j256.ormlite:ormlite-android:4.48'
compile 'com.j256.ormlite:ormlite-core:4.48'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'com.github.tibolte:elasticdownload:1.0.+'
compile 'me.dm7.barcodescanner:zxing:1.8.4'
compile 'com.google.android.gms:play-services-vision:15.0.2'
compile 'com.android.support.constraint:constraint-layout:1.1.1'
compile 'com.github.amlcurran.showcaseview:library:5.4.3'
compile 'com.wang.avi:library:2.1.3'
testCompile 'junit:junit:4.12'
androidTestCompile 'com.jayway.android.robotium:robotium-solo:5.6.0'
androidTestCompile 'com.android.support.test:rules:1.0.2'
}
apply plugin: 'com.google.gms.google-services'
在我的项目级别build.gradle:
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.google.gms:google-services:4.0.0'
}
我得到的错误:
Could not find any version that matches com.google.android.gms:play-services-base:[15.0.1,16.0.0).
在build.gradle
中添加这一行
apply plugin: 'com.google.gms.google-services'
// Work around for onesignal-gradle-plugin compatibility
com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true
或
googleServices.disableVersionCheck = true
确保您在项目级别 build.gradle 之前拥有 google()
存储库:
allprojects {
repositories {
google()
mavenLocal()
jcenter()
}
}
我更新后遇到了同样的问题。尝试验证您是否安装了最新的构建工具和 Google 存储库版本。
此外,验证您正在使用 google()
的 项目 build.gradle
和 构建工具版本 .检查 build.gradle
后,尝试重新同步、清理并重新构建您的项目。
如果需要,请尝试更新到最新版本的项目依赖项。
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
}
// ...
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
构建 -> 清理项目
在我的特殊情况下就足够了(使用 gms:v15.0.1
和 firebase:v16.0.1
)。
在我的情况下,我只是更新 Andorid SDK Platform-Tools
以前是 28.0.0,当我将它更新到 28.0.1 问题修复!
我用这个 build.gradle [Proyect]
解决了这个问题
buildscript {
ext.kotlin_version = '1.2.30'
repositories {
google()
jcenter()
maven {
url 'https://dl.bintray.com/android/android-tools'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.2.0'
}
}
implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.google.firebase:firebase-database:16.0.1'
implementation 'com.google.android.gms:play-services-auth:16.0.1'
}
apply plugin: 'com.google.gms.google-services'
com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true
在我的项目中没有任何更改的情况下,我突然遇到错误。
错误:无法解析“:app@debug/compileClasspath”的依赖关系:无法解析 com.google.android.gms:play-services-location:[15.0.0, 16.0.0).
在项目级别build.gradle
buildscript {
ext.kotlin_version = '1.3.21'
repositories {
google()
jcenter()
maven {
url 'https://dl.bintray.com/android/android-tools'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.2.0'
}
和
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven { url 'https://google.bintray.com/exoplayer/' }
}
}
使用上述设置我没有运气。
以下是对我有用的
我发现问题出在 onesignal
我在依赖项中添加了排除子句:
implementation ('com.onesignal:OneSignal:3.10.5') {
exclude group: 'com.google.android.gms'
}
然后手动添加缺少的依赖项。
添加排除子句后,我得到 Could not resolve com.google.firebase:firebase-messaging:[10.2.1, 12.1.0)。如果您发现任何其他缺少的依赖项,请按照我下面的说明进行操作。
在模块级别build.gradle我替换了
implementation 'com.google.firebase:firebase-messaging:17.4.0' with
implementation 'com.google.firebase:firebase-messaging:10.2.1'
终于Build成功完成。我在这上面浪费了将近 5 个小时。希望这对某些人有所帮助。
在我的情况下一切正常,但是在接下来的"run action"!
中突然遇到了这个问题
无论如何,通过将 项目 build.gradle 文件中的 com.google.gms:google-services
更新为 其最新版本 来解决问题,如下所示:
buildscript {
repositories {
jcenter()
mavenLocal()
mavenCentral()
maven {
url 'https://maven.google.com/'
name 'Google'
}
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.google.gms:google-services:4.3.0'
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://maven.google.com' }
maven { url "https://jitpack.io" }
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
此外,请确保:
- 您未处于 离线模式。
- 如果您使用 Http Proxy,您可以连接到 google 存储库。
注意(在上面的示例中):
Android工作室:3.4.2
compileSdkVersion 28
targetSdkVersion 28
选项 1:
按照以下说明解决。
Project-level build.gradle
使用
maven { url "https://www.jitpack.io" }
而不是
maven { url "https://jitpack.io" }
选项 2:
按照以下步骤解决。
第一步:
Project-level build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.google.gms:google-services:4.2.0' // google-services plugin
classpath 'com.android.tools.build:gradle:3.4.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven { url "http://dl.bintray.com/populov/maven" }
maven { url "https://jitpack.io" } // For Ucrop
maven { url "https://maven.google.com" } // Google's Maven repository - FCM
maven {
url 'https://dl.bintray.com/azeesoft/maven'
}
google()
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
第二步:
App-level build.gradle
我已经更新了 One Signal 版本。
使用
implementation 'com.onesignal:OneSignal:3.11.1'
而不是
implementation 'com.onesignal:OneSignal:3.10.9'
可能的原因是
- 无法上网 connected/work 未从 AndroidStudio 首选项启用离线功能
- 依赖项的缓存版本不存在
- 已启用代理
- Google 播放服务暂时不可用
解决方案:
除了上述答案外,别忘了在项目级别 build.gradle
中添加 mavenLocal()
allprojects {
repositories {
......
......
mavenLocal()
}
}
这有助于在服务暂时不可用时访问缓存的依赖项
改变
implementation('com.onesignal:OneSignal:3.15.1')
和
implementation('com.onesignal:OneSignal:3.15.1') {
exclude group: 'com.android.support', module: 'customtabs'
exclude group: 'com.google.android.gms'
}
解决了我的问题。
这对我有用。在项目级 Gradle 文件中使用以下顺序:
repositories {
google()
maven {
url 'https://maven.google.com/'
name 'Google'
}
jcenter()
}
allprojects {
repositories {
google()
mavenCentral()
maven {
url "https://jitpack.io"
}
jcenter()
}
}
只需 运行 使用 Internet 连接构建(对我有用)。
我删除了每个 firebase 插件,例如:
来自 pubspec.yaml
和运行pub get
和flutter run
再次添加包
运行 pub get
又 flutter run
对我有用。
如果没有解决,一个一个尝试打包
转到android目录中的build.gradle,插入
maven { url 'https://maven.google.com' }
在所有项目存储库的顶部位置:
allprojects {
repositories {
maven { url 'https://maven.google.com' } //<<--Insert this above google()
google()
我正在为我的 android 应用程序使用 firebase,当我尝试 运行 该应用程序时突然遇到错误。星期六它工作得很好。我不知道这个错误是怎么发生的以及如何解决这个问题。请帮我。
我的依赖项 build.gradle
dependencies {
compile('com.crashlytics.sdk.android:crashlytics:2.5.2@aar') {
transitive = true;
}
compile 'com.android.volley:volley:1.0.0'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:cardview-v7:23.4.0'
compile 'com.facebook.android:facebook-android-sdk:4.1.0'
compile 'com.google.code.gson:gson:2.8.4'
compile 'com.android.support:multidex:1.0.3'
compile 'com.microsoft.azure:azure-mobile-android:3.1.0'
compile 'com.mixpanel.android:mixpanel-android:4.8.0'
compile 'com.firebase:firebase-client-android:2.4.0'
compile 'com.google.firebase:firebase-core:16.0.0'
compile 'com.google.firebase:firebase-auth:16.0.1'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.j256.ormlite:ormlite-android:4.48'
compile 'com.j256.ormlite:ormlite-core:4.48'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'com.github.tibolte:elasticdownload:1.0.+'
compile 'me.dm7.barcodescanner:zxing:1.8.4'
compile 'com.google.android.gms:play-services-vision:15.0.2'
compile 'com.android.support.constraint:constraint-layout:1.1.1'
compile 'com.github.amlcurran.showcaseview:library:5.4.3'
compile 'com.wang.avi:library:2.1.3'
testCompile 'junit:junit:4.12'
androidTestCompile 'com.jayway.android.robotium:robotium-solo:5.6.0'
androidTestCompile 'com.android.support.test:rules:1.0.2'
}
apply plugin: 'com.google.gms.google-services'
在我的项目级别build.gradle:
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.google.gms:google-services:4.0.0'
}
我得到的错误:
Could not find any version that matches com.google.android.gms:play-services-base:[15.0.1,16.0.0).
在build.gradle
中添加这一行apply plugin: 'com.google.gms.google-services'
// Work around for onesignal-gradle-plugin compatibility
com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true
或
googleServices.disableVersionCheck = true
确保您在项目级别 build.gradle 之前拥有 google()
存储库:
allprojects {
repositories {
google()
mavenLocal()
jcenter()
}
}
我更新后遇到了同样的问题。尝试验证您是否安装了最新的构建工具和 Google 存储库版本。
此外,验证您正在使用 google()
的 项目 build.gradle
和 构建工具版本 .检查 build.gradle
后,尝试重新同步、清理并重新构建您的项目。
如果需要,请尝试更新到最新版本的项目依赖项。
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
}
// ...
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
构建 -> 清理项目
在我的特殊情况下就足够了(使用 gms:v15.0.1
和 firebase:v16.0.1
)。
在我的情况下,我只是更新 Andorid SDK Platform-Tools
以前是 28.0.0,当我将它更新到 28.0.1 问题修复!
我用这个 build.gradle [Proyect]
解决了这个问题buildscript {
ext.kotlin_version = '1.2.30'
repositories {
google()
jcenter()
maven {
url 'https://dl.bintray.com/android/android-tools'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.2.0'
}
}
implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.google.firebase:firebase-database:16.0.1'
implementation 'com.google.android.gms:play-services-auth:16.0.1'
}
apply plugin: 'com.google.gms.google-services'
com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true
在我的项目中没有任何更改的情况下,我突然遇到错误。
错误:无法解析“:app@debug/compileClasspath”的依赖关系:无法解析 com.google.android.gms:play-services-location:[15.0.0, 16.0.0).
在项目级别build.gradle
buildscript {
ext.kotlin_version = '1.3.21'
repositories {
google()
jcenter()
maven {
url 'https://dl.bintray.com/android/android-tools'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.2.0'
}
和
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven { url 'https://google.bintray.com/exoplayer/' }
}
}
使用上述设置我没有运气。
以下是对我有用的 我发现问题出在 onesignal
我在依赖项中添加了排除子句:
implementation ('com.onesignal:OneSignal:3.10.5') {
exclude group: 'com.google.android.gms'
}
然后手动添加缺少的依赖项。 添加排除子句后,我得到 Could not resolve com.google.firebase:firebase-messaging:[10.2.1, 12.1.0)。如果您发现任何其他缺少的依赖项,请按照我下面的说明进行操作。
在模块级别build.gradle我替换了
implementation 'com.google.firebase:firebase-messaging:17.4.0' with
implementation 'com.google.firebase:firebase-messaging:10.2.1'
终于Build成功完成。我在这上面浪费了将近 5 个小时。希望这对某些人有所帮助。
在我的情况下一切正常,但是在接下来的"run action"!
中突然遇到了这个问题
无论如何,通过将 项目 build.gradle 文件中的 com.google.gms:google-services
更新为 其最新版本 来解决问题,如下所示:
buildscript {
repositories {
jcenter()
mavenLocal()
mavenCentral()
maven {
url 'https://maven.google.com/'
name 'Google'
}
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.google.gms:google-services:4.3.0'
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://maven.google.com' }
maven { url "https://jitpack.io" }
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
此外,请确保:
- 您未处于 离线模式。
- 如果您使用 Http Proxy,您可以连接到 google 存储库。
注意(在上面的示例中):
Android工作室:3.4.2
compileSdkVersion 28
targetSdkVersion 28
选项 1:
按照以下说明解决。
Project-level build.gradle
使用
maven { url "https://www.jitpack.io" }
而不是
maven { url "https://jitpack.io" }
选项 2:
按照以下步骤解决。
第一步:
Project-level build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.google.gms:google-services:4.2.0' // google-services plugin
classpath 'com.android.tools.build:gradle:3.4.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven { url "http://dl.bintray.com/populov/maven" }
maven { url "https://jitpack.io" } // For Ucrop
maven { url "https://maven.google.com" } // Google's Maven repository - FCM
maven {
url 'https://dl.bintray.com/azeesoft/maven'
}
google()
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
第二步:
App-level build.gradle
我已经更新了 One Signal 版本。
使用
implementation 'com.onesignal:OneSignal:3.11.1'
而不是
implementation 'com.onesignal:OneSignal:3.10.9'
可能的原因是
- 无法上网 connected/work 未从 AndroidStudio 首选项启用离线功能
- 依赖项的缓存版本不存在
- 已启用代理
- Google 播放服务暂时不可用
解决方案:
除了上述答案外,别忘了在项目级别 build.gradle
mavenLocal()
allprojects {
repositories {
......
......
mavenLocal()
}
}
这有助于在服务暂时不可用时访问缓存的依赖项
改变
implementation('com.onesignal:OneSignal:3.15.1')
和
implementation('com.onesignal:OneSignal:3.15.1') {
exclude group: 'com.android.support', module: 'customtabs'
exclude group: 'com.google.android.gms'
}
解决了我的问题。
这对我有用。在项目级 Gradle 文件中使用以下顺序:
repositories {
google()
maven {
url 'https://maven.google.com/'
name 'Google'
}
jcenter()
}
allprojects {
repositories {
google()
mavenCentral()
maven {
url "https://jitpack.io"
}
jcenter()
}
}
只需 运行 使用 Internet 连接构建(对我有用)。
我删除了每个 firebase 插件,例如:
来自 pubspec.yaml
和运行pub get
和flutter run
再次添加包
运行 pub get
又 flutter run
对我有用。
如果没有解决,一个一个尝试打包
转到android目录中的build.gradle,插入
maven { url 'https://maven.google.com' }
在所有项目存储库的顶部位置:
allprojects {
repositories {
maven { url 'https://maven.google.com' } //<<--Insert this above google()
google()