gpt4 book ai didi

java - 无法解析第三方库

转载 作者:行者123 更新时间:2023-12-01 11:09:27 26 4
gpt4 key购买 nike

我从 https://github.com/chenyangcun/MaterialDesignExample 下载一个 Android Studio 项目。我将其添加到 Android Studio 并运行它,但出现了一些错误:

enter image description here

爆炸的是 build.gradle 文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

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

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:design:22.2.1'
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.android.support:cardview-v7:22.2.1'
compile 'com.android.support:recyclerview-v7:22.2.1'

compile 'com.github.bumptech.glide:glide:3.6.0'
compile 'de.hdodenhof:circleimageview:1.3.0'

compile 'com.loopj.android:android-async-http:1.4.7'
compile 'com.google.code.gson:gson:2.3'
compile 'com.afollestad:material-dialogs:0.7.6.0'
}

然后我使用相同的“第三方库”构建一个全新的 Android 项目
爆炸的是我的 bulid.gradle 文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.0"

defaultConfig {
applicationId "com.mummyding.app.test"
minSdkVersion 15
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'])
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.android.support:design:22.2.1'

compile 'com.android.support:cardview-v7:22.2.1'
compile 'com.android.support:recyclerview-v7:22.2.1'
compile 'com.github.bumptech.glide:glide:3.6.0'
compile 'de.hdodenhof:circleimageview:1.3.0'

compile 'com.loopj.android:android-async-http:1.4.7'
compile 'com.google.code.gson:gson:2.3'
compile 'com.afollestad:material-dialogs:0.7.6.0'
}

让我困惑的是“错误信息”:

enter image description here

在这个项目中编译'de.hdodenhof:circleimageview:1.3.0'没问题!!!
所以我的问题是:

  1. 你能运行this吗?您的 Andorid Studio 中的项目吗?

  2. 为什么“错误信息”不同?

  3. 如何解决?

PS:
Gradle 版本:2.2.1
IDE:Android Studio 1.2.1.1
操作系统:Ubuntu 15.04
我在中国,但我有一个带shadowsocks的路由器(这意味着我可以访问任何我想要的网站)
这确实让我困惑了很长一段时间,所以任何建议将不胜感激,谢谢您。

最佳答案

问题可能是您的代理设置。您可能需要在 gradle.properties 中设置以下内容(请根据您的代理设置进行修改):

systemProp.http.proxyHost=127.0.0.1
systemProp.http.proxyPort=8123
systemProp.https.proxyHost=127.0.0.1
systemProp.https.proxyPort=8123

关于java - 无法解析第三方库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32548312/

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