我制作了一个安卓库(我的第一个)... 按照步骤,能够成功上传到bintray ..但当我要求链接到jCenter时,我从Bintray收到了这封邮件:
请合并所有必要的文件,例如pom,aar和source汇入一条共同的道路,我们很乐意批准你的收录请求。
我不确定我做错了什么。
这是我的bintray图书馆https://bintray.com/hitanshu-dhawan/maven/SharedPref
我的libary build.gradle文件
apply plugin: 'com.android.library'
android {
compileSdkVersion 26
defaultConfig {
minSdkVersion 1
targetSdkVersion 26
versionCode 1
versionName "1.0.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
ext {
bintrayRepo = 'maven'
bintrayName = 'SharedPref'
publishedGroupId = 'com.hitanshudhawan.sharedpref'
libraryName = 'sharedpref'
artifact = 'sharedpref'
libraryDescription = 'An android library for making SharedPreferences easy'
siteUrl = 'https://github.com/hitanshu-dhawan/SharedPref'
gitUrl = 'https://github.com/hitanshu-dhawan/SharedPref.git'
libraryVersion = '1.0.0'
developerId = 'hitanshu-dhawan'
developerName = 'Hitanshu Dhawan'
developerEmail = 'hitanshudhawan1996@gmail.com'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:support-annotations:26.1.0'
}
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'
答案 0 :(得分:0)
看起来你的pom文件中有groupId之外的文件。您有library
path下的文件,而不是sharedpref
路径下的文件
在library
路径下也没有创建元数据。
您可以查看user manual了解详情。
答案 1 :(得分:0)
我已经成功将2个图书馆上传到Bintray和JCenter,我写了一个如何做的指南,你可以按照我的指南去做。