4

我正在尝试在 jitpack.io 上发布我的 android 库,但是当我尝试添加依赖项来测试我的工件时,我收到了这个错误:

Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.github.pashaoleynik97:GSBarcodeScannerHelper:0.1.1-alpha.
Open File
Show Details


Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not resolve com.github.pashaoleynik97:GSBarcodeScannerHelper:0.1.1-alpha.
Open File
Show Details


Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not resolve com.github.pashaoleynik97:GSBarcodeScannerHelper:0.1.1-alpha.
Open File
Show Details


Unable to resolve dependency for ':app@release/compileClasspath': Could not resolve com.github.pashaoleynik97:GSBarcodeScannerHelper:0.1.1-alpha.
Open File
Show Details


Unable to resolve dependency for ':app@releaseUnitTest/compileClasspath': Could not resolve com.github.pashaoleynik97:GSBarcodeScannerHelper:0.1.1-alpha.
Open File
Show Details

下面列出了我在库项目中的 gradle 文件。

我的build.gradle(应用程序):

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.github.pashaoleynik97.gsbarcodescannerhelperdemo"
        minSdkVersion 21
        targetSdkVersion 28
        versionCode 2
        versionName "1.1"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation project(':gsbarcodescannerhelper')
}

我的build.gradle(gsbarcodescannerhelper):

apply plugin: 'com.android.library'
group='com.github.pashaoleynik97;'

android {
    compileSdkVersion 28



    defaultConfig {
        minSdkVersion 21
        targetSdkVersion 28
        versionCode 2
        versionName "0.1.1"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation 'com.android.support:appcompat-v7:28.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.3.10'
    implementation(name: 'generalscan-sdk-1.0.6', ext:'aar')
}

最后,我的build.gradle(项目):

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.0'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'

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

allprojects {
    repositories {
        google()
        jcenter()
        flatDir {
            dirs project(':gsbarcodescannerhelper').file('libs')
        }
        maven { url 'https://jitpack.io' }
    }
}

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

我在 github 上推送了我的项目,创建了版本(通过 github Web 界面),然后转到 jitpack.io 并发布了我的库。但是当我尝试将这个库添加到我的新测试项目中时,我遇到了错误(列在这篇文章的顶部)。我做错了什么?

UPD

我还尝试classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'在此文档中添加类似内容:https ://jitpack.io/docs/ANDROID/ 但结果保持不变。

更新 2

创建问题:https ://github.com/jitpack/jitpack.io/issues/3758

4

4 回答 4

5

这似乎是一个持续几天的问题,可以在这里找到,链接提到了一个解决方法在这里。解决方法是添加www. jitpack.io因此将其更新为以下内容:

maven { url 'https://www.jitpack.io' }
于 2019-09-17T11:03:38.197 回答
1

Jitpack 是非常敏感的工具。出现这个问题的原因有很多。我将尝试逐项列出它们。

1) 单元测试失败;如果您有任何失败的单元测试,您将能够在 jitpack 上创建工件(没有报告问题),但无法引用该工件。确保所有单元测试都正常工作。

2) 建议您在项目级别的 gradle 中为打算成为工件的项目包括以下内容:

项目级别 Gradle 的顶部

apply plugin: 'maven-publish'
group = '<add-your-package-name-here>'

并且在您的项目级别 gradle 的最底部包括

apply from: 'https://raw.githubusercontent.com/sky-uk/gradle-maven-plugin/master/gradle-mavenizer.gradle'

现在生成一个工件并查看参考是否有效

3)私人神器?也许您没有正确引用您的工件。如果您的 repo 是私有的,请务必在 gradle.properties 添加身份验证令牌,然后像这样在项目级别的 gradle 上引用它,

gradle.properties

authToken=jp_myfake_token

项目级分级:

maven {
            url "https://jitpack.io"
            credentials{ username authToken }
        }

4) 等待一个小时。无论出于何种原因,Jitpack 都存在同步和缓存问题。有时您所要做的就是等待一个(或两个)小时,一切就开始工作了。

希望其中之一可以帮助您解决问题。Jitpack 设置简单,但有问题。

于 2019-09-09T17:14:28.407 回答
0

确保添加maven { url "https://jitpack.io" }

build.gradle (项目级别)中 像这样:

allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

另外,请确保您的 Gradle 离线模式已禁用

于 2019-03-08T02:39:45.423 回答
0

现在它仅对公共存储库免费...如果您将存储库 url 放在https://jitpack.io并查找,您将看到以下消息作为日志:

Subscription not active

于 2019-09-19T17:34:03.640 回答