diff --git a/Editor/Platforms/AndroidBuildInfo.cs b/Editor/Platforms/AndroidBuildInfo.cs index 8a5cbf5..706865e 100644 --- a/Editor/Platforms/AndroidBuildInfo.cs +++ b/Editor/Platforms/AndroidBuildInfo.cs @@ -34,6 +34,9 @@ public override void ParseCommandLineArgs() { switch (arguments[i]) { + case "-appBundle": + EditorUserBuildSettings.buildAppBundle = true; + break; case "-splitBinary": PlayerSettings.Android.buildApkPerCpuArchitecture = true; break; @@ -103,7 +106,7 @@ public override void OnPreProcessBuild(BuildReport report) if (Application.isBatchMode) { - // Disable to prevent gradle form killing parallel builds + // Disable to prevent gradle form killing parallel builds on same build machine EditorPrefs.SetBool("AndroidGradleStopDaemonsOnExit", false); } diff --git a/package.json b/package.json index 1912061..754da71 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Utilities.BuildPipeline", "description": "The Build Pipeline Utilities aims to give developers more tools and options when making builds with the command line or with continuous integration.", "keywords": [], - "version": "1.5.5", + "version": "1.5.6", "unity": "2019.4", "documentationUrl": "https://github.com/RageAgainstThePixel/com.utilities.buildpipeine#documentation", "changelogUrl": "https://github.com/RageAgainstThePixel/com.utilities.buildpipeine/releases",