我的gradle有问题:
Error:Failed to resolve: com.google.android.gms:play-services-measurement:10.0.1
这是我的gradle模块应用文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
defaultConfig {
applicationId "com.the.app"
minSdkVersion 21
targetSdkVersion 25
versionCode 44
versionName "2.0.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.0.1'
compile 'com.google.android.gms:play-services:10.0.1'
compile 'me.grantland:autofittextview:0.2.1'
compile 'com.android.support:recyclerview-v7:25.0.1'
compile 'com.github.siyamed:android-shape-imageview:0.9.2@aar'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.4'
compile 'com.loopj.android:android-async-http:1.4.9'
}
apply plugin: 'com.google.gms.google-services'
这是我的项目格斗:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.google.gms:google-services:2.0.0'
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
我真的不明白为什么它不起作用。我尝试将类路径'com.google.gms:google-services:2.0.0'更改为版本3,但我需要一个密钥,我不想使用Firebase。
我该怎么办?
答案 0 :(得分:6)
更改build.gradle(项目级别)中的类路径
从:
classpath' com.google.gms:google-services:2.1.2'
为:
classpath' com.google.gms:google-services:3.0.0'
答案 1 :(得分:0)
我也遇到了这个问题。我偶然解决了。当我注释掉
时,我确保我的所有库都在SDK Manager中是最新的apply plugin: 'com.google.gms.google-services'
在我的gradle模块应用文件中。删除此行后,所有内容都正常编译。我希望这会有所帮助。