我有不同风格的 android 库项目。每种风味都与不同的服务器 URL 相关。
我想构建不同的 aar 并将它们全部上传到 Nexus。但是我不知道在执行uploadArchives 时如何选择所有productFlavors。
如果有人知道如何解决我的问题,请帮助我,谢谢!
这是库中的 build.gradle:
android {
lintOptions {
checkReleaseBuilds false
abortOnError false
}
configurations {
all {
exclude module: 'httpclient'
exclude module: 'commons-logging'
exclude module: 'xpp3'
}
}
flavorDimensions "server"
productFlavors {
dev {
versionNameSuffix "dev"
buildConfigField("String", "BASE_URL", "\"http://dev.path.com\"")
}
qa {
versionNameSuffix "test"
buildConfigField("String", "BASE_URL", "\"http://test.path.com\"")
}
prod {
versionNameSuffix "demo"
buildConfigField("String", "BASE_URL", "\"http://demo.path.com\"")
}
}
compileSdkVersion 28
defaultConfig {
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName "0.0.23"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
uploadArchives 任务工作正常,没有味道
uploadArchives {
repositories {
mavenDeployer {
repository(url: "http://nexus.path") {
authentication(userName: "name", password: "pass")
pom.groupId = "groupId"
pom.artifactId = "core"
pom.version = '0.0.23'
}
}
}
}
但是在我添加了flavorDimensions之后它就不起作用了。
我需要使用不同的 artifactId 或版本将我所有的 aars 上传到 Nexus。我想在我的其他项目中使用它,如下所示:
implementation "groupId:core.dev:0.0.23"
implementation "groupId:core.qa:0.0.23"
implementation "groupId:core.prod:0.0.23"
或者
implementation "groupId:core:0.0.23-dev"
implementation "groupId:core:0.0.23-qa"
implementation "groupId:core:0.0.23-prod"
如果可能,请帮助我。