0

我通过 Bintray 将一个工件文件推送到 Jcenter。通过在 Jcenter repo 上搜索该工件已确认该工件已发布。但是我无法通过 gradle 在我的应用程序中访问该工件。

这是项目回购链接:https ://bintray.com/alfjam/maven/tickerupdate5/view

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "socket.ingrain.io.sockettest"
        minSdkVersion 14
        targetSdkVersion 21
        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.wingoku.tickers:1.0.4'
}

我究竟做错了什么?如何访问我的工件文件?

此致

4

1 回答 1

2

您缺少工件 ID。尝试:

compile 'com.wingoku.tickers:app:1.0.4'
于 2015-04-04T11:03:00.490 回答