无法解决Bintray依赖性

时间:2018-12-13 10:22:52

标签: android sdk bintray

我已经在https://bintray.com上创建了一个名为“ maven”的Maven存储库,并向其中添加了一个aar库。但是Android Studio无法构建该项目,因为:

Failed to resolve: com.danileron

最令人困惑的是,如果我减少以下版本的库版本:

implementation 'com.danileron.sdk:test_sdk:1.0.1'

收件人:

implementation 'com.danileron.sdk:test_sdk:1.0.0'

Android Studio会警告我:

A newer version of com.danileron.sdk:test_sdk than 1.0.0 is available: 1.0.1

因此,它了解该库,但是当我构建项目时,它无法解决该问题?

项目的build.gradle:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
        maven {
            url  "https://webbey.bintray.com/maven"
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.4'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        maven {
            url  "https://webbey.bintray.com/maven"
        }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

在这种情况下,webbey是组织

1 个答案:

答案 0 :(得分:1)

这个问题有两个问题。

  1. .pom文件的版本为1.0.0,而不是1.0.1,这发出了警告。
  2. .arr文件未与.pom文件一起定位。 maven-metadata.xml仅保留.pom,而没有实际的工件,因此无法解决依赖关系。