我收到以下错误:
无法解析依赖关系 ':app @ debugAndroidTest / compileClasspath':无法解决 com.google.android.gms:播放服务,地图:11.8.0
在android studio中创建新的地图项目时会出现此错误。
我的build.gradle
:
apply plugin: 'com.android.application'android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.phaniteja.maps"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.google.android.gms:play-services-maps:11.8.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
任何人都可以帮助我吗?
答案 0 :(得分:0)
allprojects {
repositories {
jcenter()
maven { url "https://maven.google.com" }
}}
在build.gradle中添加它。如果您使用的是google_service.json,请确保此apply plugin: 'com.google.gms.google-services'
位于您的依赖项之后,以避免版本问题。
也添加类路径。classpath 'com.google.gms:google-services:3.2.0'