错误:(23,13)无法解决:com.intuit.sdp:sdp-android:1.0.2

时间:2015-11-01 09:19:50

标签: android android-studio gradle android-gradle android-library

我的项目工作正常但是当我重新安装android studio时,我在导入butterknife和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

1 个答案:

答案 0 :(得分:3)

似乎jcenter的ssl无效。

作为解决方法,请尝试将其添加到build.gradle

repositories {
    mavenCentral()
    jcenter {
         url "http://jcenter.bintray.com/"
    }
}