错误:包com.android.volley不存在

时间:2014-10-24 19:24:31

标签: android android-studio

我正在尝试将Volley添加到Android Studio中的Android项目中。 我从git下载了Volley,并使用Project Structure工具将其作为模块添加为android库。我修复了有关构建版本的错误,并且能够使用添加到项目中的新模块进行编译。我开始编写代码,Volley的东西甚至显示在我的自动完成中,包裹自动添加到我的源文件中。

但是当我编译时,我得到error: package com.android.volley does not exist

有谁知道我的问题是什么?

这是我的项目结构: enter image description here

这是我的应用build.gradle:

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 20
    buildToolsVersion "20.0.0"

    defaultConfig {
        applicationId "com.loop"
        minSdkVersion 15
        targetSdkVersion 20
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:support-v13:20.0.0'
    compile 'com.google.android.gms:play-services:4.4.+'
}

和settings.gradle:

include ':app', ':volley'

4 个答案:

答案 0 :(得分:10)

我必须将compile project(':volley')添加到build.gradle

下的依赖项中

所以最后的代码是

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:support-v13:20.0.0'
    compile 'com.google.android.gms:play-services:4.4.+'
    compile project(':volley')
}

答案 1 :(得分:1)

根据documentation添加此依赖关系可能会有所帮助:

dependencies {
    ........
    implementation 'com.android.volley:volley:1.1.1'
}

它对Android Studio 3.6.1有所帮助。

答案 2 :(得分:0)

这也有效.. 在Build.gradle的最后一个中添加它

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

答案 3 :(得分:0)

只需将此添加到您的依赖项

即可
compile 'com.mcxiaoke.volley:library-aar:1.0.0'