【问题标题】:Error:(23, 13) Failed to resolve: com.intuit.sdp:sdp-android:1.0.2错误:(23, 13) 无法解决:com.intuit.sdp:sdp-android:1.0.2
【发布时间】: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 android-studio gradle android-gradle-plugin android-library


【解决方案1】:

看来 jcenter 的 ssl 无效。

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

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

【讨论】:

  • 我将以上内容添加到项目 gradle 中,但仍然出现同样的错误
  • 请提出解决方案
  • 错误:(23, 13) 解析失败:com.intuit.sdp:sdp-android:1.0.2
  • 一些代理配置?
  • 我使用的是 gradle-2.8。 gradle 没有解决任何第三方库
猜你喜欢
  • 2022-11-06
  • 2015-12-07
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2017-05-10
  • 2016-07-16
  • 1970-01-01
相关资源
最近更新 更多