AndroidStudio gradle sync:无法解决

时间:2015-09-30 07:00:59

标签: android android-studio gradle android-gradle

我有新的清除Android应用程序。我想在我的应用中添加排球来发出HTTP请求。我正在使用Gradle使用Android studio开发应用程序。这是我的应用程序的屏幕截图: enter image description here

嗨,你看到我要在我的应用中添加凌空添加这行代码 com.mcxiaoke.volley:library-aar:1.0.0 来构建。 gradle文件

我也尝试添加Retrofit。但它给出了同样的错误:无法解决:bla bla bla。

所以我认为在我的情况下,gradle无法同步除com.android之外的任何其他库......

我尝试将这行代码添加到build.gradle中。但没有任何改变

scrollViewer.ViewportHeight

请告知

编辑:评论后添加了项目和模块的build.gradle文件。 的项目:

 buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
    }
    repositories {
        mavenCentral()
    }
}

模块:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.3.0'
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

3 个答案:

答案 0 :(得分:2)

Volley is now published by the Android Open Source Project on jCenter:

0.3

答案 1 :(得分:1)

您可以使用

com.mcxiaoke.volley:library-aar:1.0.1

或其最新版本(Not aar)

compile 'com.mcxiaoke.volley:library:1.0.19'

并设置

buildToolsVersion "23.0.1"

并使用

'com.google.code.gson:gson:2.3'

答案 2 :(得分:0)

添加此

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:+'
    compile 'com.mcxiaoke.volley:library:1.0.19'
}