【发布时间】:2023-04-03 17:37:02
【问题描述】:
我有 3 个 .aar 文件,它们包含在一个模块中,aar 模块包含在 app 模块中。
目前我有 3 个构建变体,对于特定的构建变体,我想包含特定的 aar。
假设: 我有 3 个 aars 命名 xyz, pqr, def
xyz 将包含在 123 构建变体中 pqr 将包含在 456 构建变体中 def 将包含在 789 构建变体中
aar 模块 build.gradle
File xyzFile= file("xyz.aar")
File pqrFile = file("pqr.aar")
File defFile = file("def.aar")
configurations.maybeCreate("xyz")
artifacts.add("xyz", xyzFile)
configurations.maybeCreate("pqr")
artifacts.add("pqr", pqrFile )
configurations.maybeCreate("def")
artifacts.add("def", defFile )
应用项目 build.gradle
apply plugin: 'com.android.application'
configurations {
xyzDebugCompile
xyzReleaseCompile
xyzReleaseUnsignedCompile
pqrDebugCompile
pqrReleaseCompile
pqrReleaseUnsignedCompile
defDebugCompile
defReleaseCompile
defReleaseUnsignedCompile
}
android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
=
lintOptions {
abortOnError false
}
defaultConfig {
applicationId "cm.ez.eia"
minSdkVersion 21
targetSdkVersion 24
versionCode 1
versionName '0.9.2'
multiDexEnabled true
}
buildTypes {
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
applicationVariants.all { variant ->
variant.outputs.each { output ->
project.ext { appName = 'FA-Comm' }
def newName = output.outputFile.name
newName = newName.replace("app-", "$project.ext.appName-")
output.outputFile = new File(output.outputFile.parent, newName)
}
}
}
release {
debuggable false
jniDebuggable false
applicationVariants.all { variant ->
variant.outputs.each { output ->
project.ext { appName = 'FA-Comm' }
def newName = output.outputFile.name
newName = newName.replace("app-", "$project.ext.appName-")
output.outputFile = new File(output.outputFile.parent, newName)
}
}
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
releaseUnsigned {
debuggable false
jniDebuggable false
applicationVariants.all { variant ->
variant.outputs.each { output ->
project.ext { appName = 'FA-Comm' }
def newName = output.outputFile.name
newName = newName.replace("app-", "$project.ext.appName-")
output.outputFile = new File(output.outputFile.parent, newName)
}
}
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
javaMaxHeapSize "1g" //specify the heap size for the dex process
preDexLibraries = false //delete the already predexed libraries
}
productFlavors {
xyz {
applicationId 'com.fieldaware.communicator'
minSdkVersion 21
targetSdkVersion 24
}
def {
applicationId 'com.fieldaware.communicator'
minSdkVersion 21
targetSdkVersion 24
}
pqr {
applicationId 'com.fieldaware.communicator'
minSdkVersion 21
targetSdkVersion 24
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile project(':android-common-master')
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.squareup.okhttp:okhttp:2.5.0'
compile 'com.squareup.okhttp:okhttp-urlconnection:2.5.0'
compile 'com.android.support:multidex:1.0.0'
compile 'com.google.android.gms:play-services-ads:9.4.0'
compile 'com.google.android.gms:play-services-auth:9.4.0'
compile 'com.google.android.gms:play-services-gcm:9.4.0'
//Aar Configs
xyzDebugCompile project(path:':sdk',configuration: 'xyz')
xyzReleaseCompile project(path:':sdk',configuration: 'xyz')
xyzReleaseUnsignedCompile project(path:':sdk',configuration: 'xyz')
pqrDebugCompile project(path: ':sdk', configuration: 'pqr')
pqrReleaseCompile project(path: ':sdk', configuration: 'pqr')
pqrReleaseUnsignedCompile project(path: ':sdk', configuration: 'pqr')
defDebugCompile project(path: ':sdk', configuration: 'def')
defReleaseCompile project(path: ':sdk', configuration: 'def')
defReleaseUnsignedCompile project(path: ':sdk', configuration: 'def')
}
我想根据具体的构建变体包含具体的 .aar 文件。
此代码正在获取不正确的 aar 文件。请提出任何解决方案
【问题讨论】:
标签: android gradle android-gradle-plugin build.gradle