我在使用Maven导入com.google.gson时遇到问题。现在,我收到以下错误:
Error:(24, 17) Failed to resolve: junit:junit:4.12
和
Error:(22, 13) Failed to resolve: com.google.code.gson:gson:2.5
这是Project的build.gradle:
buildscript {
repositories {
jcenter()
maven { url 'http://repo1.maven.org/maven2' }
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
repositories {
jcenter()
mavenCentral()
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是"模块:App":
的build.gradleapply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.name.testversion"
minSdkVersion 17
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.google.code.gson:gson:2.5'
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.android.gms:play-services:8.3.0'
}
请告诉我如何解决这些问题并成功导入" com.google.code.gson:gson:2.5"进入Android Studio以与此项目一起使用。
此外,您知道,我是Android Studio的新手,只是为了将其放入视角,这是我第一次在Android Studio中使用Maven,但不是第一次使用Maven。
答案 0 :(得分:1)
在您的项目build.grade
上尝试使用:
allprojects {
repositories {
jcenter()
mavenCentral()
}
}
而不只是repositories {...}
答案 1 :(得分:1)
将项目gradle更改为此
//顶级构建文件,您可以在其中添加所有子项目/模块共有的配置选项。
buildscript {
repositories {
jcenter()
maven { url 'http://repo1.maven.org/maven2' }
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}