Browse Source
android: Set default build variant to mainlineRelWithDebInfo (#11358)
pull/15/merge
Charles Lombardo
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
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") |
|
|
|
} |
|
|
|
|