2020-05-19 04:14:01 +07:00
|
|
|
import com.unciv.build.BuildConfig
|
|
|
|
import java.util.*
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("com.android.application")
|
|
|
|
id("kotlin-android")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2021-09-05 17:18:51 +07:00
|
|
|
compileSdk = 30
|
2020-05-19 04:14:01 +07:00
|
|
|
sourceSets {
|
|
|
|
getByName("main").apply {
|
|
|
|
manifest.srcFile("AndroidManifest.xml")
|
|
|
|
java.srcDirs("src")
|
|
|
|
aidl.srcDirs("src")
|
|
|
|
renderscript.srcDirs("src")
|
|
|
|
res.srcDirs("res")
|
|
|
|
assets.srcDirs("assets")
|
|
|
|
jniLibs.srcDirs("libs")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
packagingOptions {
|
2022-05-17 22:37:12 +07:00
|
|
|
resources.excludes += "META-INF/robovm/ios/robovm.xml"
|
|
|
|
// part of kotlinx-coroutines-android, should not go into the apk
|
|
|
|
resources.excludes += "DebugProbesKt.bin"
|
2020-05-19 04:14:01 +07:00
|
|
|
}
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "com.unciv.app"
|
2021-12-14 01:12:53 +07:00
|
|
|
minSdk = 21
|
2021-09-05 16:55:19 +07:00
|
|
|
targetSdk = 30 // See #5044
|
2020-05-19 04:14:01 +07:00
|
|
|
versionCode = BuildConfig.appCodeNumber
|
|
|
|
versionName = BuildConfig.appVersion
|
|
|
|
|
2022-05-19 07:12:18 +07:00
|
|
|
base.archivesName.set("Unciv")
|
2020-05-19 04:14:01 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
// necessary for Android Work lib
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Had to add this crap for Travis to build, it wanted to sign the app
|
|
|
|
// but couldn't create the debug keystore for some reason
|
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
getByName("debug") {
|
|
|
|
storeFile = rootProject.file("debug.keystore")
|
|
|
|
keyAlias = "androiddebugkey"
|
|
|
|
keyPassword = "android"
|
|
|
|
storePassword = "android"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
getByName("release") {
|
2022-05-19 07:12:18 +07:00
|
|
|
// If you make this true you get a version of the game that just flat-out doesn't run
|
2021-12-12 00:48:34 +07:00
|
|
|
isMinifyEnabled = false
|
2020-05-19 04:14:01 +07:00
|
|
|
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
|
|
|
|
}
|
|
|
|
|
2020-06-02 02:30:16 +07:00
|
|
|
}
|
2021-08-23 02:00:34 +07:00
|
|
|
lint {
|
2022-05-19 07:12:18 +07:00
|
|
|
disable += "MissingTranslation" // see res/values/strings.xml
|
2020-05-19 04:14:01 +07:00
|
|
|
}
|
2021-05-07 17:18:48 +07:00
|
|
|
compileOptions {
|
2021-09-05 23:36:35 +07:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
2022-05-22 05:05:33 +07:00
|
|
|
|
|
|
|
isCoreLibraryDesugaringEnabled = true
|
2021-05-07 17:18:48 +07:00
|
|
|
}
|
2021-08-23 02:00:34 +07:00
|
|
|
androidResources {
|
|
|
|
// Don't add local save files and fonts to release, obviously
|
|
|
|
ignoreAssetsPattern = "!SaveFiles:!fonts:!maps:!music:!mods"
|
|
|
|
}
|
2020-05-19 04:14:01 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// called every time gradle gets executed, takes the native dependencies of
|
|
|
|
// the natives configuration, and extracts them to the proper libs/ folders
|
|
|
|
// so they get packed with the APK.
|
|
|
|
task("copyAndroidNatives") {
|
|
|
|
val natives: Configuration by configurations
|
|
|
|
|
|
|
|
doFirst {
|
2021-06-10 01:37:27 +07:00
|
|
|
val rx = Regex(""".*natives-([^.]+)\.jar$""")
|
2020-05-19 04:14:01 +07:00
|
|
|
natives.forEach { jar ->
|
2021-06-10 01:37:27 +07:00
|
|
|
if (rx.matches(jar.name)) {
|
|
|
|
val outputDir = file(rx.replace(jar.name) { "libs/" + it.groups[1]!!.value })
|
|
|
|
outputDir.mkdirs()
|
2020-05-19 04:14:01 +07:00
|
|
|
copy {
|
|
|
|
from(zipTree(jar))
|
|
|
|
into(outputDir)
|
|
|
|
include("*.so")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.whenTaskAdded {
|
2021-08-13 00:42:49 +07:00
|
|
|
// See https://github.com/yairm210/Unciv/issues/4842
|
|
|
|
if ("package" in name || "assemble" in name || "bundleRelease" in name) {
|
2020-05-19 04:14:01 +07:00
|
|
|
dependsOn("copyAndroidNatives")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register<JavaExec>("run") {
|
|
|
|
val localProperties = project.file("../local.properties")
|
|
|
|
val path = if (localProperties.exists()) {
|
|
|
|
val properties = Properties()
|
|
|
|
localProperties.inputStream().use { properties.load(it) }
|
|
|
|
|
|
|
|
properties.getProperty("sdk.dir") ?: System.getenv("ANDROID_HOME")
|
|
|
|
} else {
|
|
|
|
System.getenv("ANDROID_HOME")
|
|
|
|
}
|
|
|
|
|
|
|
|
val adb = "$path/platform-tools/adb"
|
|
|
|
|
|
|
|
doFirst {
|
|
|
|
project.exec {
|
|
|
|
commandLine(adb, "shell", "am", "start", "-n", "com.unciv.app/AndroidLauncher")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-05-19 07:12:18 +07:00
|
|
|
// Updating to latest version would require upgrading sourceCompatibility and targetCompatibility to 1_8, and targetSdk to 31 -
|
2021-08-20 17:37:35 +07:00
|
|
|
// run `./gradlew build --scan` to see details
|
2022-05-19 07:12:18 +07:00
|
|
|
// Known Android Lint warning: "GradleDependency"
|
2021-09-05 23:36:35 +07:00
|
|
|
implementation("androidx.core:core-ktx:1.6.0")
|
|
|
|
implementation("androidx.work:work-runtime-ktx:2.6.0")
|
2022-05-22 05:05:33 +07:00
|
|
|
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.1.5")
|
2020-05-19 04:14:01 +07:00
|
|
|
}
|