Сегодня я слишком долго обдумывал эту проблему, не могу понять, что не так с этой настройкой.Я следовал этому руководству, чтобы иметь возможность загружать библиотеку Android в bintray (а позже добавить ее в jcenter).Вот соответствующие файлы:
Уровень проекта build.gradle:
buildscript {
ext.kotlin_version = '1.3.20'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath "com.github.dcendents:android-maven-gradle-plugin:2.1"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Уровень библиотеки build.gradle:
apply plugin: 'com.android.library'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'com.github.dcendents.android-maven'
ext{
bintrayRepo = "FlexibleRecyclerView"
bintrayName = "com.tornelas.flexiblerecyclerview"
libraryName = "flexiblerecyclerview"
//artifact
publishedGroupId = 'com.tornelas.flexiblerecyclerview'
artifact = 'flexiblerecyclerview'
libraryVersion = '0.1'
libraryDescription = 'A recycler view where you can set the number of columns/rows and orientation on the .xml file instead of setting it on the layout manager.'
siteUrl = ''
gitUrl = ''
developerId = 'tornelas'
developerName = 'Tiago Ornelas'
developerEmail = ''
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.text'
allLicenses = ['Apache-2.0']
}
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "0.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
}
if(project.rootProject.file('local.properties').exists()){
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'
}
(я опустил siteUrl, gitUrlи developerEmail по соображениям конфиденциальности)
На панели управления bintray: http://snpy.in/UwPAv5
Когда я запускаю bintrayUpload, я получаю следующее:
1: Task failed with an exception.
Execution failed for task ':flexiblerecyclerview:bintrayUpload'.
> Could not create package 'tornelas/FlexibleRecyclerView/com.tornelas.flexiblerecyclerview': HTTP/1.1 404 Not Found [message:Repo 'FlexibleRecyclerView' was not found]
2: Task failed with an exception.
Execution failed for task ':bintrayPublish'.
> Could not sign version '0.1': HTTP/1.1 404 Not Found [message:Repo 'FlexibleRecyclerView' was not found]
Мне было интересно,Эта проблема возникала, потому что эта библиотека «FlexibleRecyclerView» является частью организации (называемой «Frontkom»).Но я не мог придумать решение для этого.
Я уверен, что учетные данные в local.properties верны, так как я уже аутентифицировался, используя их REST API с ними.
Многиезаранее спасибо!