这是我第一次尝试将gradle与android项目一起使用。我想为我的项目添加改造,但它一直在告诉我。
无法解决:com.squareup.retrofit:retrofit:1.9.0
无法解决:com.squareup.okhttp:2.2.0
然而,Google Play服务运作完美。
我的gradle文件如下:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "test.gradel"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.google.android.gms:play-services:6.5.87'
compile group: "com.squareup.retrofit", name: "retrofit", version: "1.9.0"
compile group: "com.squareup.okhttp", name: "okhttp", version: "2.2.0"
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.2'
}
}
非常感谢任何帮助。
由于
答案 0 :(得分:2)
通过创建更高级别的build.gradle文件并将以下代码移入其中来解决该问题。
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.2'
}
}
allprojects {
repositories {
jcenter()
}
}
答案 1 :(得分:1)
您必须指定可以找到这些工件的位置。 您必须在脚本中添加存储库块。
您必须将此添加到build.gradle
repositories {
mavenCentral()
}
或
repositories {
jcenter()
}
Google Play服务库之所以有效,是因为它位于Google Repository中,可以使用SDK Manager下载。