gpt4 book ai didi

android - 错误 : package com. android.volley 不存在

转载 作者:太空宇宙 更新时间:2023-11-03 11:49:28 26 4
gpt4 key购买 nike

我正在尝试将 Volley 添加到我在 Android Studio 中的 android 项目中。我从 git 下载了 Volley,并使用项目结构工具将它添加为一个模块,作为一个 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:

包括':app', ':volley'

最佳答案

我必须将 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')
}

关于android - 错误 : package com. android.volley 不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26554890/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com