我有不同口味的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或版本将我的所有ars上传到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"
请尽可能帮助我。