我从https://github.com/chenyangcun/MaterialDesignExample下载了一个Android Studio项目。我将它添加到我的Android Studio并运行它,但是出现了一些错误:
bloww是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'
}
令我困惑的是“错误信息”:
编译'de.hdodenhof:circleimageview:1.3.0'在这个项目中没问题!!!
所以我的问题:
您可以在Andorid Studio中运行this项目吗?
为什么“错误信息”不同?
如何解决?
PS:
Gradle版本:2.2.1
IDE:Android Studio 1.2.1.1
操作系统:Ubuntu 15.04
我在中国,但我有一个带有shadowsocks的路由器(这意味着我可以访问我想要的任何网站)
很长一段时间我真的很困惑,所以任何建议都会受到高度赞赏,谢谢你提前。
答案 0 :(得分:1)
问题可能是您的代理设置。您可能需要在gradle.properties
中设置以下内容(请根据您的代理设置进行修改):
systemProp.http.proxyHost=127.0.0.1
systemProp.http.proxyPort=8123
systemProp.https.proxyHost=127.0.0.1
systemProp.https.proxyPort=8123
答案 1 :(得分:0)
我修好了!!!! 它不是由GFW引起的。当我在我的ubuntu上用Oracle-JDK替换OpenJDK时效果很好!