Android/Jitpack: 无法导入子模块
Android/Jitpack: Unable to import submodule
我正在尝试导入我正在创建的 android 库的子模块。子模块称为 progressbar
https://jitpack.io/#SomeKoder/Essentials/0.1.0
https://github.com/SomeKoder/Essentials
dependencies {
implementation 'com.github.SomeKoder:Essentials:0.1.0'
}
我试过这个和许多其他变体都没有成功。
dependencies {
implementation 'com.github.SomeKoder.Essentials:progressbar:0.1.0'
}
有人可以帮我弄清楚我做错了什么吗?
提前致谢
将此添加到模块 build.gradle 导致实际构建工件:
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'maven-publish'
}
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'com.somekoder.Essentials.progressbar'
artifactId = 'progressbar'
version = '0.1.4'
}
debug(MavenPublication) {
from components.debug
groupId = 'com.somekoder.Essentials.progressbar'
artifactId = 'progressbar-debug'
version = '0.1.4'
}
}
}
}
看来您必须在每个要为其创建工件的模块中添加此代码的变体。然后通过 JitPack 导入就可以了。
我正在尝试导入我正在创建的 android 库的子模块。子模块称为 progressbar
https://jitpack.io/#SomeKoder/Essentials/0.1.0
https://github.com/SomeKoder/Essentials
dependencies {
implementation 'com.github.SomeKoder:Essentials:0.1.0'
}
我试过这个和许多其他变体都没有成功。
dependencies {
implementation 'com.github.SomeKoder.Essentials:progressbar:0.1.0'
}
有人可以帮我弄清楚我做错了什么吗? 提前致谢
将此添加到模块 build.gradle 导致实际构建工件:
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'maven-publish'
}
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'com.somekoder.Essentials.progressbar'
artifactId = 'progressbar'
version = '0.1.4'
}
debug(MavenPublication) {
from components.debug
groupId = 'com.somekoder.Essentials.progressbar'
artifactId = 'progressbar-debug'
version = '0.1.4'
}
}
}
}
看来您必须在每个要为其创建工件的模块中添加此代码的变体。然后通过 JitPack 导入就可以了。