最近,我在我的项目中做了一个主要的重构,我已经构建了一个新项目并开始将类和方法从一个项目移动到另一个项目。一路走来,我一定做错了,搞砸了我的项目。
当我尝试同步/构建项目时,我得到:
错误:
Could not find any version that matches com.android.tools.build:gradle:0.11.+.
Required by:
android_app:appName:unspecified
摇篮:
buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:0.11.+'
}
}
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.1.0"
lintOptions {
abortOnError false
}
defaultConfig {
minSdkVersion 11
targetSdkVersion 19
}
signingConfigs {
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
productFlavors {
}
}
dependencies {
compile 'com.android.support:support-v4:19.1.+'
compile 'com.google.maps.android:android-maps-utils:+'
compile project(':libraries:facebook')
compile 'com.google.android.gms:play-services:4.+'
compile files('libs/YouTubeAndroidPlayerApi.jar')
compile files('libs/libGoogleAnalyticsServices.jar')
compile files('libs/svg-android.jar')
compile project(':MyLibrary')
}
有什么想法吗?
答案 0 :(得分:1)
您需要添加存储库:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.11.+'
}
}