作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将我自己的库项目上传到 jCenter/Bintray,为此我已经遵循了以下网站的所有步骤
引用网站链接:
我的 bintrayUpload 命令执行成功,如下所示
现在,当我要导入 Github Repo 时,它总是会出现如下所示的带有禁用按钮的页面。
我已经在 github 中允许授予对这个 repo 的访问权限
这是我的项目级build.gradle
文件
buildscript {
repositories {
mavenCentral()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0-alpha06'
classpath 'com.novoda:bintray-release:0.8.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenCentral()
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
build.gradle
app目录下的文件
apply plugin: 'com.novoda.bintray-release'
apply plugin: 'com.android.library'
publish {
def groupProjectID = 'com.nip.test'
def artifactProjectID = 'nip-test'
def publishVersionID = '1.0'
userOrg = 'testing-007'
repoName = 'MyTestRepo'
groupId = groupProjectID
artifactId = artifactProjectID
publishVersion = publishVersionID
desc = 'Android library for displaying data on basic calculation.'
website = 'https://github.com/testing-tech/MyTestRepo'
}
android {
compileSdkVersion 28
defaultConfig {
// applicationId "com.nip.test"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
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'
implementation "android.arch.work:work-runtime:1.0.0-rc02"
}
但是,问题还是发生了。有什么解决办法?
最佳答案
关于android - 在 jFrog/Bintray 中导入 github 存储库以上传库时,导入 Github 存储库按钮被禁用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54978929/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!