沉舟侧畔千帆进,病树前头万木春。这篇文章主要讲述无法解决:com.google.android.support.gms:play-services-map:10.2.0相关的知识,希望能为你提供帮助。
我正在尝试使用Google的功能来创建谷歌地图,但当我尝试同步项目时,我收到了此错误
这是build.gradle文件..
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'android {compileSdkVersion 24
buildToolsVersion "24.0.2"
defaultConfig {
applicationId "com.example.chamiya.bustracking"
minSdkVersion 16
targetSdkVersion 24
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(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})// can update the Firebasecompile 'com.google.android.gms:play-services:11.4.2'
compile 'com.android.support:cardview-v7:24.2.1'
compile 'com.android.support:recyclerview-v7:24.2.1'
compile 'com.google.firebase:firebase-database:10.2.0'
compile 'com.google.firebase:firebase-auth:10.2.0'
compile 'com.firebaseui:firebase-ui-auth:1.2.0'
compile 'com.firebaseui:firebase-ui-database:1.2.0'
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.android.support.gms:play-services-map:10.2.0'
testCompile 'junit:junit:4.12'}
apply plugin: 'com.google.gms.google-services'
答案
无法解决:com.google.android.support.gms:play-services-map:10.2.0它发生是因为它不存在:
使用:
compile 'com.google.android.gms:play-services-maps:x.x.x'
【无法解决(com.google.android.support.gms:play-services-map:10.2.0)】代替
compile 'com.google.android.support.gms:play-services-map:10.2.0'
无论如何,在build.gradle中你必须改变一些东西:
- 您必须使用相同版本的支持firebase库和Google Play服务库。
compile 'com.google.android.gms:play-services:11.X.X'
compile 'com.google.firebase:firebase-database:11.x.x'
compile 'com.google.firebase:firebase-auth:11.x.x'
compile 'com.google.android.support.gms:play-services-map:11.x.x'
- 更新你的
compileSdkVersion
- 使用compatibile version库的
firebase-ui
。 - 删除文件顶部的
apply plugin: 'com.google.gms.google-services'
。
推荐阅读
- 我可以使用`xarray.apply_ufunc`并行化`numpy.bincount`吗()
- Android - Google地图为位置返回null [重复]
- Android Studio未检测到Pepper Android平板电脑
- 从Android中的Intent中选择时,文件返回空(“”)
- Android File.exists()不区分大小写吗()
- 我希望我的Android应用程序将数据同步到MYSQL以用于我的在线ERP
- Android Xamarin-使用SQLite时打开计划的通知会停止重复并崩溃
- 禁用插件并使用./gradlew(app:dependencies检查依赖关系树)
- Android 8或更高版本使用Firebase Performance SDK在Android Oreo上崩溃的应用程序