Android Studio的Gradle Sync(SDK)问题

时间:2017-04-11 16:08:57

标签: java android gradle sdk dependencies

apply plugin: 'com.android.application'

repositories {
mavenLocal()
flatDir {
    dirs 'libs'
}
}
android {
compileSdkVersion 24
buildToolsVersion '25.0.0'

defaultConfig {
    applicationId "com.google.firebase.udacity.friendlychat"
    minSdkVersion 16
    targetSdkVersion 24
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 
'proguard-rules.pro'
    }
}
packagingOptions {
    exclude 'META-INF/LICENSE'
    exclude 'META-INF/LICENSE-FIREBASE.txt'
    exclude 'META-INF/NOTICE'
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'

compile 'com.android.support:design:24.2.0'
compile 'com.android.support:appcompat-v7:24.2.0'

//firebase

// Displaying images
compile 'com.github.bumptech.glide:glide:3.6.1'
compile 'com.google.firebase:firebase-database:10.2.0' // adding database 
dependency to SDK
}
apply plugin: 'com.google.gms.google-services'

这些是我收到的gradle同步错误。

错误:(37,13)无法解决:com.android.support:design:24.2.0

错误:(38,13)无法解决:com.android.support:appcompat-v7:24.2.0

有人可以告诉我需要改变什么才能让这个运行起来。它一直在工作,直到我更新Android Studio。

提前致谢

2 个答案:

答案 0 :(得分:0)

更改

buildToolsVersion '25.0.0'

buildToolsVersion '24.2.0'

我希望它对你有所帮助!

答案 1 :(得分:0)

<强>更新

我想通了,截至3月份有一个新的存储库更新

所以我只是改变了

buildToolsVersion '24.0.1'

我将构建版本更改为

buildToolsVersion '25.0.2' //this is actually the latest as of 12/4/17

然后从

更改了该版本的依赖项
compile 'com.android.support:design:24.2.0'
compile 'com.android.support:appcompat-v7:24.2.0'

compile 'com.android.support:design:25.3.1'
compile 'com.android.support:appcompat-v7:25.3.1' 

现在我没有错误,我的gradle实际构建,我希望这对可能遇到这个唯一新的

的人有用