Browse Source

Merge pull request #98687 from m4gr3d/disable_swappy_requirement_for_as_debug_builds

Update the `production` build argument for Android Studio debug builds
Thaddeus Crews 9 months ago
parent
commit
cb411fa960
1 changed files with 1 additions and 1 deletions
  1. 1 1
      platform/android/java/lib/build.gradle

+ 1 - 1
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") {