gpt4 book ai didi

Android Studio 找不到 Volley

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:27:20 24 4
gpt4 key购买 nike

我从 git clone https://android.googlesource.com/platform/frameworks/volley 克隆了 volley并将其作为新模块导入到 AndroidStudio 中,但在同步时出现以下错误:

Failed to resolve: com.android.volley:volley.1.0.0

我的 build.gradle,在我的应用程序文件夹中:

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "com.example.cs169_au.volleytest1"
minSdkVersion 22
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.0'
compile 'com.android.support:design:23.2.0'
compile 'com.google.android.gms:play-services:8.1.0'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.google.maps:google-maps-services:0.1.7'
compile 'com.android.volley:volley.1.0.0'
}

repositories {
mavenCentral()
}

最佳答案

Google 的官方 Volley 托管在 JCenter 中,因此您必须将 jcenter() 添加到项目的 build.gradle 中的 repositories 中:

allprojects {
repositories {
mavenCentral()
jcenter() // Add this line
}
}

关于Android Studio 找不到 Volley,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35933650/

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