diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 12:13:23 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 12:13:23 -0600 |
commit | cb411fa960f0b7fdbd97dcdb4c90f9346360ee0e (patch) | |
tree | 1b98c6367a1ac45cd45b12aab78a0125b8d2c9e3 /platform | |
parent | 646cef2ca23af4c8dd20c7c56a8fdb874005d01b (diff) | |
parent | d699d4b7d4933e941f55b564537d0b3d34f332ca (diff) | |
download | redot-engine-cb411fa960f0b7fdbd97dcdb4c90f9346360ee0e.tar.gz |
Merge pull request #98687 from m4gr3d/disable_swappy_requirement_for_as_debug_builds
Update the `production` build argument for Android Studio debug builds
Diffstat (limited to 'platform')
-rw-r--r-- | platform/android/java/lib/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/java/lib/build.gradle b/platform/android/java/lib/build.gradle index f6aee434e5..f273105efc 100644 --- a/platform/android/java/lib/build.gradle +++ b/platform/android/java/lib/build.gradle @@ -106,8 +106,8 @@ android { boolean devBuild = buildType == "dev" boolean debugSymbols = devBuild boolean runTests = devBuild - boolean productionBuild = !devBuild boolean storeRelease = buildType == "release" + boolean productionBuild = storeRelease def sconsTarget = flavorName if (sconsTarget == "template") { |