【发布时间】:2016-02-01 08:08:30
【问题描述】:
我的项目运行良好,但是当我重新安装 android studio 时,我在导入黄油刀和 sdp 库时出现错误。这是我的 gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.works.vipul.brainturner"
minSdkVersion 13
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.intuit.sdp:sdp-android:1.0.2'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.android.support:support-v4:23.0.1'
compile 'com.google.android.gms:play-services-ads:8.1.0'
}
这是我得到的错误:
Error:A problem occurred configuring project ':app'.
> Could not resolve all dependencies for configuration ':app:_debugCompile'.
> Could not resolve com.intuit.sdp:sdp-android:1.0.2.
Required by:
BrainTurner:app:unspecified
> Could not resolve com.intuit.sdp:sdp-android:1.0.2.
> Could not get resource 'https://jcenter.bintray.com/com/intuit/sdp/sdp-android/1.0.2/sdp-android-1.0.2.pom'.
> Could not GET 'https://jcenter.bintray.com/com/intuit/sdp/sdp-android/1.0.2/sdp-android-1.0.2.pom'.
> peer not authenticated
> Could not resolve com.jakewharton:butterknife:7.0.1.
Required by:
BrainTurner:app:unspecified
> Could not resolve com.jakewharton:butterknife:7.0.1.
> Could not get resource 'https://jcenter.bintray.com/com/jakewharton/butterknife/7.0.1/butterknife-7.0.1.pom'.
> Could not GET 'https://jcenter.bintray.com/com/jakewharton/butterknife/7.0.1/butterknife-7.0.1.pom'.
> peer not authenticated
【问题讨论】:
-
如何解决这个问题请教
-
我无法在 android studio 中导入任何 3rd 方库。我收到错误 anroid (23,13)
标签: android android-studio gradle android-gradle-plugin android-library