4

到这里,我已经成功完成了二维码扫描项目。我已经用于 qrcodereaderview 1.0.0 v url 存储库库。这是我的依赖。

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.dlazaro66.qrcodereaderview:qrcodereaderview:1.0.0'
    compile files('libs/ksoap2-android-assembly-3.2.0-jar-with-dependencies.jar')
}

我的项目中只有一个应用程序模块。我想将此项目作为库(.AAR)上传到 jcenter 存储库。

我已经尝试了一些 jcenter 上传步骤,并且我也从 bintrayupload 获得了成功的上传响应。

为此,我创建了 Github 登录并创建了项目 url。但是,我没有将我的项目代码上传到 github。我只在 build.gradle 中给出了空的项目 url。

但是,当我在 bintray 存储库中看到时。我的 bintray maven 存储库上没有代码更新/版本更改。

Android Studio 项目转换为 .aar(library) 文件并按照以下步骤上传到 jcenter 存储库。

1)。我已经更改了主应用程序模块 build.gradle 文件进行了三处更改。
更改了库插件,注释了应用程序 ID更改了清单文件启动器活动

我的应用程序模块 build.gradle 文件:

//apply plugin: 'com.android.application'
apply plugin: 'com.android.library'
ext {
    bintrayRepo = 'maven' //mavenrepo
    bintrayName = 'app'

    publishedGroupId = 'com.test.testsdkproj16'
    libraryName = 'TestsdkProj16'
    artifact = 'app'

    libraryDescription = 'A simple qr code library calling your project in Android'

    siteUrl = 'https://github.com/vhkrishnanv/TestsdkProj16'
    gitUrl = 'https://github.com/vhkrishnanv/TestsdkProj16.git'
    githubRepository= 'vhkrishnanv/TestsdkProj16'

    libraryVersion = '1.0.0'

    developerId = 'vhk*********6'
    developerName = 'harikrish'
    developerEmail = 'vhkris******@gmail.com'

    licenseName = 'The Apache Software License, Version 2.0'
    licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
    allLicenses = ["Apache-2.0"]
}
allprojects {
    repositories {
        jcenter()
    }
}
android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"
    defaultConfig {
        //applicationId "com.test.testsdkproj16"
        minSdkVersion 18
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.dlazaro66.qrcodereaderview:qrcodereaderview:1.0.0'
    compile files('libs/ksoap2-android-assembly-3.2.0-jar-with-dependencies.jar')
}

// Place it at the end of the file
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'

我的清单文件:

 <activity android:name=".MainActivitySDK_16">
            <intent-filter>
                <action android:name="com.test.testsdkproj16.MainActivitySDK_16" />
                <!--comment when exporting AAR below two lines-->
                 <!--<action android:name="android.intent.action.MAIN" />
                 <category android:name="android.intent.category.LAUNCHER" />-->
            </intent-filter>
        </activity>

gradle.properties文件:

bintray.user=vhk*********6
bintray.apikey=***1f************************98f51***

2)。将我的工作室项目上传到 bintray.com 的后续步骤。我为此使用了三个命令。

-gradleW clean
BUILD SUCCESSFUL
-gradleW install
BUILD SUCCESSFUL
-gradleW bintrayupload
BUILD SUCCESSFUL

执行上述三个命令后,当我在我的 bintray 存储库中看到时,我的存储库没有任何变化。

我的存储库的屏幕截图

在此处输入图像描述

我不确切知道缺少什么步骤。任何人都可以帮助解决这个错误。

总的来说,我想将我的 Studio2.2.2 项目(转换为 .aar 库)发布到 jcenter 存储库,并且需要像这样获取我的项目 url。(当我在依赖项中的其他新项目中尝试此 url 时,同步时出错,因为代码/.aar 未上传到存储库中)

我有一个未决的最后步骤。上传代码后,需要 jcenter 同步在 bintray 存储库中待定。只有这样,我才能将上述 url 用于其他新项目。

compile 'com.test.testsdkproj16:app:1.0.0' 
4

2 回答 2

3

在您写的问题中,您将凭证保存到 bintray 帐户中gradle.properties

bintray.user=vhk*********6
bintray.apikey=***1f************************98f51***

如果您从以下位置查看源文件:

https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle

您将看到以下几行:

Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())

user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")

您已将凭据放入错误的文件中。他们应该在local.properties

编辑 经过长时间的讨论,最终该项目被发布到 bintray。这里的问题是用户正在发布到另一个组织项目。所以确实,@gba 的回答是正确的。但是,建议@harikrishnan 下载bintray.gradleinstall.gradle到该项目并对其进行修改。以下是它们的外观:

bintray.gradle

apply plugin: 'com.jfrog.bintray'
apply from: '../bintray.data.gradle'

version = libraryVersion

if (project.hasProperty("android")) { // Android libraries
    task sourcesJar(type: Jar) {
        classifier = 'sources'
        from android.sourceSets.main.java.srcDirs
    }

    task javadoc(type: Javadoc) {
        options.addBooleanOption('Xdoclint:none', true)
        source = android.sourceSets.main.java.srcDirs
        classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
    }
} else { // Java libraries
    task sourcesJar(type: Jar, dependsOn: classes) {
        classifier = 'sources'
        from sourceSets.main.allSource
    }
}

task javadocJar(type: Jar, dependsOn: javadoc) {
    classifier = 'javadoc'
    from javadoc.destinationDir
}

artifacts {
    archives javadocJar
    archives sourcesJar
}

Properties properties = new Properties()
properties.load(new FileInputStream(file(rootProject.file('local.properties'))))

bintray {
    user = properties.getProperty("bintray.user")
    key = properties.getProperty("bintray.apikey")

    configurations = ['archives']
    pkg {
        repo = bintrayRepo
        name = bintrayName
        desc = libraryDescription
        websiteUrl = siteUrl
        vcsUrl = gitUrl
        userOrg = userOrg
        licenses = allLicenses
        publish = true
        publicDownloadNumbers = true
    }
}

install.gradle

apply plugin: 'com.github.dcendents.android-maven'
apply from: '../bintray.data.gradle'

group = publishedGroupId

install {
    repositories.mavenInstaller {
        pom {
            project {
                packaging 'aar'
                groupId publishedGroupId
                artifactId artifact

                name libraryName
                description libraryDescription
                url siteUrl

                licenses {
                    license {
                        name licenseName
                        url licenseUrl
                    }
                }
                developers {
                    developer {
                        id developerId
                        name developerName
                        email developerEmail
                    }
                }
                scm {
                    connection gitUrl
                    developerConnection gitUrl
                    url siteUrl

                }
            }
        }
    }
}

bintray.data.gradle

ext {
    bintrayRepo = 'maven'
    bintrayName = 'samplename'

    publishedGroupId = 'sample.package.name'
    libraryName = 'SampleName'
    artifact = 'samplename'

    libraryDescription = ''

    siteUrl = ''
    gitUrl = ''

    libraryVersion = '1.0.0'

    developerId = ''
    developerName = 'Zagórski'
    developerEmail = ''

    licenseName = 'The Apache Software License, Version 2.0'
    licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
    allLicenses = ["Apache-2.0"]
}

应用程序build.gradle

apply plugin: 'com.android.application'

(...)

apply from: '../install.gradle'
apply from: '../bintray.gradle'

主要build.gradle

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.2'
        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

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

使用这些类的示例项目在这里

于 2016-12-05T15:49:11.563 回答
0

好像您缺少 userOrg 参数。请查看以下线程:

在 bintray 上上传二进制文件时 HTTP/1.1 401 未经授权

使用 Bintray 在 jCenter 上发布 Android Studio 库时遇到问题

将我的 android aar 发布到 jcenter

简而言之,您的仓库在您的组织下,而不是在您的用户帐户下。

于 2016-12-01T07:10:31.693 回答