From bdd909cbae5fe27d7d26eddd5de0d79aa16f0741 Mon Sep 17 00:00:00 2001 From: omigamedev Date: Mon, 17 Sep 2018 01:21:53 +0200 Subject: [PATCH] Android only has release native code at the moment --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index ed5bdd8..8a5144b 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -77,6 +77,6 @@ preBuild.dependsOn(copyFiles) task generateVersioning(type: Exec) { workingDir "$projectDir/../" - commandLine 'python', 'scripts/pre-build.py', 'debug' + commandLine 'python', 'scripts/pre-build.py', 'release' } copyFiles.dependsOn(generateVersioning)