kaliber/build/android/app/build.gradle

389 lines
13 KiB
Groovy
Raw Normal View History

2020-04-13 11:24:53 +00:00
apply plugin: 'com.android.application'
apply plugin: Utils
2020-04-13 11:24:53 +00:00
android {
compileSdk rootProject.ext.compileSdk
ndkVersion rootProject.ext.ndkVersion
2020-04-13 11:24:53 +00:00
defaultConfig {
minSdk rootProject.ext.minSdk
targetSdk rootProject.ext.targetSdk
ndk {
abiFilters = []
}
2020-04-13 11:24:53 +00:00
}
2023-09-03 19:33:10 +00:00
2020-04-13 11:24:53 +00:00
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
2023-09-03 19:33:10 +00:00
2023-09-05 09:14:04 +00:00
flavorDimensions 'game', 'arch'
2023-09-03 19:33:10 +00:00
productFlavors {
helloWorld {
dimension 'game'
applicationId 'com.kaliber.helloworld'
resValue "string", "app_name", "Kaliber Hello World"
2023-09-06 18:15:00 +00:00
manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"]
2023-09-03 19:33:10 +00:00
ext {
gnTarget = "hello_world"
}
}
demo {
dimension 'game'
applicationId 'com.kaliber.woom'
resValue "string", "app_name", "Kaliber Demo"
2023-09-06 18:15:00 +00:00
manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"]
2023-09-05 20:54:06 +00:00
ext {
gnTarget = "demo"
}
}
woom {
dimension 'game'
applicationId 'com.woom.game'
resValue "string", "app_name", "woom"
resValue "string", "interstitial_ad_unit_id", "ca-app-pub-1321063817979967/8373182022"
2023-09-27 21:35:00 +00:00
resValue "string", "admob_application_id", "ca-app-pub-1321063817979967~1100949243"
2023-09-06 18:15:00 +00:00
manifestPlaceholders = [appIcon: "@mipmap/ic_launcher"]
2023-09-03 19:33:10 +00:00
ext {
gnTarget = "demo"
}
}
2023-09-05 09:14:04 +00:00
arm7 {
2023-09-05 09:14:04 +00:00
dimension 'arch'
ndk {
abiFilters = ["armeabi-v7a"]
}
}
arm8 {
2023-09-05 09:14:04 +00:00
dimension 'arch'
ndk {
abiFilters = ["arm64-v8a"]
}
}
x86 {
dimension 'arch'
ndk {
abiFilters = ["x86"]
}
}
x86_64 {
2023-09-05 09:14:04 +00:00
dimension 'arch'
ndk {
abiFilters = ["x86_64"]
}
}
2023-09-05 15:50:32 +00:00
2023-09-05 09:14:04 +00:00
allArchs {
dimension 'arch'
ndk {
abiFilters = ["armeabi-v7a", "arm64-v8a", "x86_64", "x86"]
}
}
armOnly {
dimension 'arch'
ndk {
abiFilters = ["armeabi-v7a", "arm64-v8a"]
}
}
x86Only {
dimension 'arch'
ndk {
abiFilters = ["x86_64", "x86"]
}
}
2023-09-27 21:35:00 +00:00
// Native library name is same as GN target name.
android.productFlavors.each { flavor ->
if (flavor.dimension == 'game') {
"${flavor.name}" {
resValue "string", "lib_name", flavor.ext.gnTarget
buildConfigField 'String', 'NATIVE_LIBRARY', "\"${flavor.ext.gnTarget}\""
}
}
}
2023-09-03 19:33:10 +00:00
}
2020-04-13 11:24:53 +00:00
sourceSets {
main {
2021-10-29 11:42:49 +00:00
java.srcDirs += ['../../../src/engine/platform/java/com/kaliber/base']
2023-09-09 20:49:36 +00:00
android.buildTypes.each { buildType ->
"${buildType.name}" {
assets.srcDirs = [utils.getAssetsDir(buildType.name)]
}
}
}
2023-09-09 20:49:36 +00:00
android.buildTypes.each { buildType ->
"${buildType.name}" {
jniLibs.srcDirs = [utils.getJniLibsDir(buildType.name)]
}
2020-04-13 11:24:53 +00:00
}
}
2023-09-03 19:33:10 +00:00
namespace "com.kaliber.base"
2020-04-13 11:24:53 +00:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.google.android.gms:play-services-ads:22.0.0'
2020-04-13 11:24:53 +00:00
}
//
// Tasks for GN build
//
// Generate `args.gn` which is used by GN to take in build arguments.
2023-09-05 20:54:06 +00:00
utils.addTask('generateGnArgsFor') { String taskName, String buildType, String arch ->
task(taskName, type: WriteFileTask) {
2023-09-05 15:50:32 +00:00
content = utils.generateGnArgsContent(buildType, arch)
target = project.layout.file(provider { new File("${utils.getOutDir(buildType)}/${arch}", 'args.gn') })
}
}
// Run `gn gen` to generate ninja files.
2023-09-05 20:54:06 +00:00
utils.addTask('runGnFor') { String taskName, String buildType, String arch ->
task(taskName, type: Exec) {
2023-09-05 20:54:06 +00:00
dependsOn "generateGnArgsFor${arch}${buildType}"
executable rootProject.ext.gn
2023-09-05 15:50:32 +00:00
args '--fail-on-unused-args', 'gen', "${utils.getOutDir(buildType)}/${arch}"
// Need to run gn only once unless the configuration in `args.gn` changes.
2023-09-05 15:50:32 +00:00
inputs.file(new File("${utils.getOutDir(buildType)}/${arch}", 'args.gn'))
outputs.file(new File("${utils.getOutDir(buildType)}/${arch}", 'build.ninja'))
}
}
// Build the native library for the target game using ninja.
2023-09-05 20:54:06 +00:00
utils.addGameTask('runNinjaFor') { String taskName, String buildType, String arch, String game ->
task(taskName, type: Exec) {
2023-09-05 20:54:06 +00:00
dependsOn "runGnFor${arch}${buildType}"
executable rootProject.ext.ninja
2023-09-27 12:25:02 +00:00
args '-C', "${utils.getOutDir(buildType)}/${arch}", "src/${utils.getGnTargetFor(game)}"
2023-09-05 15:50:32 +00:00
// Always run ninja and let it figure out what needs to be compiled.
2023-09-02 15:08:19 +00:00
outputs.upToDateWhen { false }
}
}
// Assets can be obtained from the output directory of any arch but it would be good to combine them
// in a single directory in case we are buildig multi-arch and some build config have different assets.
2023-09-05 20:54:06 +00:00
utils.addGameTask('copyAssetsFor') { String taskName, String buildType, String arch, String game ->
task(taskName, type: Copy) {
2023-09-03 19:33:10 +00:00
dependsOn "runNinjaFor${game}${arch}${buildType}"
2023-09-05 15:50:32 +00:00
from "${utils.getOutDir(buildType)}/${arch}/assets"
into utils.getAssetsDir(buildType)
}
}
// Copy the native library to a directory denoting its arch code as the Android Gradle plugin expects.
2023-09-05 20:54:06 +00:00
utils.addGameTask('copyJniLibsFor') { String taskName, String buildType, String arch, String game ->
task(taskName, type: Copy) {
2023-09-03 19:33:10 +00:00
dependsOn "runNinjaFor${game}${arch}${buildType}"
2023-09-05 15:50:32 +00:00
from("${utils.getOutDir(buildType)}/${arch}") {
include "lib${utils.getGnTargetFor(game)}.so"
}
into "${utils.getJniLibsDir(buildType)}/${utils.getAbiCodeFor(arch)}"
}
}
tasks.configureEach { task ->
2023-09-05 20:54:06 +00:00
def variantPattern = /(\w+)(${utils.getArchTypesRegExp()})(${utils.getBuildTypesRegExp()})/
2023-09-05 09:14:04 +00:00
def match = task.name =~ /^merge/ + variantPattern + /JniLibFolders$/
if (match) {
utils.project.android.productFlavors.find { arch ->
if (arch.dimension == 'arch' && arch.name.capitalize() == match.group(2)) {
// Depends on each arch type for multi-arch build flavors.
arch.ndk.abiFilters.each { abi ->
2023-09-05 09:14:04 +00:00
task.dependsOn "copyJniLibsFor${match.group(1)}${utils.ARCH_CODES[abi]}${match.group(3)}"
}
return true
}
}
2023-09-03 19:33:10 +00:00
return
}
2023-09-12 19:27:54 +00:00
match = task.name =~ /^generate/ + variantPattern + /Assets$/
if (match) {
utils.project.android.productFlavors.find { arch ->
if (arch.dimension == 'arch' && arch.name.capitalize() == match.group(2)) {
// Depends on each arch type for multi-arch build flavors.
arch.ndk.abiFilters.each { abi ->
2023-09-05 09:14:04 +00:00
task.dependsOn "copyAssetsFor${match.group(1)}${utils.ARCH_CODES[abi]}${match.group(3)}"
}
return true
}
}
2023-09-03 19:33:10 +00:00
return
}
2023-09-05 09:14:04 +00:00
match = task.name =~ /^lintVitalAnalyze/ + variantPattern + /$/
if (match) {
utils.project.android.productFlavors.find { arch ->
if (arch.dimension == 'arch' && arch.name.capitalize() == match.group(2)) {
// Depends on each arch type for multi-arch build flavors.
arch.ndk.abiFilters.each { abi ->
2023-09-05 09:14:04 +00:00
task.dependsOn "copyAssetsFor${match.group(1)}${utils.ARCH_CODES[abi]}${match.group(3)}"
}
return true
}
}
2023-09-03 19:33:10 +00:00
return
}
}
//
// Utils plugin
//
class Utils implements Plugin<Project> {
final def ARCH_CODES = ["armeabi-v7a": "Arm7",
"arm64-v8a": "Arm8",
"x86_64": "X86_64",
"x86": "X86"].asImmutable()
final def GN_CPU_CODES = ["Arm7": "arm",
"Arm8": "arm64",
"X86_64": "x64",
"X86": "x86"].asImmutable()
def project
@Inject
Utils(Project project) {
this.project = project
}
void apply(Project project) {
project.extensions.create('utils', Utils)
}
// Add a task for archs and buildTypes variants.
void addTask(String prefix, Closure taskClosure) {
forEachBuildVariant { String arch, String buildType ->
def taskName = "${prefix}${arch}${buildType}"
taskClosure(taskName, buildType, arch)
}
}
// Add a task for games, archs and buildTypes variants.
void addGameTask(String prefix, Closure taskClosure) {
forEachGameBuildVariant { String game, String arch, String buildType ->
def taskName = "${prefix}${game}${arch}${buildType}"
taskClosure(taskName, buildType, arch, game)
}
}
void forEachBuildVariant(Closure callback) {
project.android.productFlavors.each { arch ->
// Only need to add tasks for arch types which maps to a single ABI
if (arch.dimension == 'arch' && arch.ndk.abiFilters.size() == 1) {
project.android.buildTypes.each { buildType ->
callback(arch.name.capitalize(), buildType.name.capitalize())
}
}
}
}
void forEachGameBuildVariant(Closure callback) {
project.android.productFlavors.each { game ->
if (game.dimension == 'game') {
project.android.productFlavors.each { arch ->
// Only need to add tasks for arch types which maps to a single ABI
if (arch.dimension == 'arch' && arch.ndk.abiFilters.size() == 1) {
project.android.buildTypes.each { buildType ->
callback(game.name.capitalize(), arch.name.capitalize(), buildType.name.capitalize())
}
}
}
}
}
}
def getBuildTypesRegExp() {
def outList = []
project.android.buildTypes.each { buildType ->
outList += buildType.name.capitalize()
}
return outList.join('|')
}
def getArchTypesRegExp() {
def outList = []
project.android.productFlavors.each { flavor ->
if (flavor.dimension == 'arch') {
outList += flavor.name.capitalize()
}
}
return outList.join('|')
}
def getAbiCodeFor(String arch) {
def outStr = ''
project.android.productFlavors.find { flavor ->
if (flavor.name.capitalize() == arch) {
outStr = flavor.ndk.abiFilters.first()
return true
}
}
return outStr
}
def getGnTargetFor(String game) {
def outStr = ''
project.android.productFlavors.find { flavor ->
if (flavor.dimension == 'game' && flavor.name.capitalize() == game) {
outStr = flavor.ext.gnTarget
return true
}
}
return outStr
}
def generateGnArgsContent(String buildType, String arch) {
def content = 'target_os="android"\n'
content += 'target_cpu="' + GN_CPU_CODES[arch] + '"\n'
content += "is_debug=${buildType != 'Release'}\n"
content += 'ndk="' + project.android.ndkDirectory + '"\n'
content += "ndk_api=${project.rootProject.ext.minSdk}\n"
return content
}
def getOutDir(String buildType) {
return "${project.buildDir}/gn_out/${buildType.toLowerCase()}"
}
def getAssetsDir(String buildType) {
return "${project.buildDir}/gn_out/${buildType.toLowerCase()}/assets"
}
def getJniLibsDir(String buildType) {
return "${project.buildDir}/gn_out/jniLibs/${buildType.toLowerCase()}"
}
}
abstract class WriteFileTask extends DefaultTask {
@Input
abstract Property<String> getContent()
@OutputFile
abstract RegularFileProperty getTarget()
@TaskAction
void run() {
def file = target.get().asFile
file.parentFile.mkdirs()
def text = content.get()
if (!file.exists() || text != file.text)
file.text = text
}
}