diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-08-23 10:12:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-23 16:12:39 +0200 |
commit | 182fb835564a56b5ee4f243d2b3cd3b2c30f3ff1 (patch) | |
tree | 70c3b302a77d8fd9bd4392954aa083f9374ecd04 /src/android/app/build.gradle.kts | |
parent | bc4ad5e62d6d9a8e81a56ce70b33dd3e8ae7bd5d (diff) |
android: Set default build variant to mainlineRelWithDebInfo (#11358)
Diffstat (limited to 'src/android/app/build.gradle.kts')
-rw-r--r-- | src/android/app/build.gradle.kts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index a8db70511..fe79a701c 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts @@ -95,6 +95,7 @@ android { // builds a release build that doesn't need signing // Attaches 'debug' suffix to version and package name, allowing installation alongside the release build. register("relWithDebInfo") { + isDefault = true resValue("string", "app_name_suffixed", "yuzu Debug Release") signingConfig = signingConfigs.getByName("debug") isMinifyEnabled = true @@ -122,6 +123,7 @@ android { flavorDimensions.add("version") productFlavors { create("mainline") { + isDefault = true dimension = "version" buildConfigField("Boolean", "PREMIUM", "false") } |