|
@@ -26,8 +26,8 @@ allprojects {
|
|
|
|
|
|
ext {
|
|
|
supportedAbis = ["armv7", "arm64v8", "x86", "x86_64"]
|
|
|
- supportedTargets = ["release", "release_debug", "debug"]
|
|
|
- supportedFlavors = ["toolsEnabled", "toolsDisabled"]
|
|
|
+ supportedTargetsMap = [release: "release", dev: "debug", debug: "release_debug"]
|
|
|
+ supportedFlavors = ["editor", "template"]
|
|
|
|
|
|
// Used by gradle to specify which architecture to build for by default when running
|
|
|
// `./gradlew build` (this command is usually used by Android Studio).
|
|
@@ -55,6 +55,17 @@ task copyDebugBinaryToBin(type: Copy) {
|
|
|
include('android_debug.apk')
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * Copy the generated 'android_dev.apk' binary template into the Godot bin directory.
|
|
|
+ * Depends on the app build task to ensure the binary is generated prior to copying.
|
|
|
+ */
|
|
|
+task copyDevBinaryToBin(type: Copy) {
|
|
|
+ dependsOn ':app:assembleDev'
|
|
|
+ from('app/build/outputs/apk/dev')
|
|
|
+ into(binDir)
|
|
|
+ include('android_dev.apk')
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* Copy the generated 'android_release.apk' binary template into the Godot bin directory.
|
|
|
* Depends on the app build task to ensure the binary is generated prior to copying.
|
|
@@ -71,7 +82,7 @@ task copyReleaseBinaryToBin(type: Copy) {
|
|
|
* Depends on the library build task to ensure the AAR file is generated prior to copying.
|
|
|
*/
|
|
|
task copyDebugAARToAppModule(type: Copy) {
|
|
|
- dependsOn ':lib:assembleToolsDisabledDebug'
|
|
|
+ dependsOn ':lib:assembleTemplateDebug'
|
|
|
from('lib/build/outputs/aar')
|
|
|
into('app/libs/debug')
|
|
|
include('godot-lib.debug.aar')
|
|
@@ -82,18 +93,40 @@ task copyDebugAARToAppModule(type: Copy) {
|
|
|
* Depends on the library build task to ensure the AAR file is generated prior to copying.
|
|
|
*/
|
|
|
task copyDebugAARToBin(type: Copy) {
|
|
|
- dependsOn ':lib:assembleToolsDisabledDebug'
|
|
|
+ dependsOn ':lib:assembleTemplateDebug'
|
|
|
from('lib/build/outputs/aar')
|
|
|
into(binDir)
|
|
|
include('godot-lib.debug.aar')
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * Copy the Godot android library archive dev file into the app module dev libs directory.
|
|
|
+ * Depends on the library build task to ensure the AAR file is generated prior to copying.
|
|
|
+ */
|
|
|
+task copyDevAARToAppModule(type: Copy) {
|
|
|
+ dependsOn ':lib:assembleTemplateDev'
|
|
|
+ from('lib/build/outputs/aar')
|
|
|
+ into('app/libs/dev')
|
|
|
+ include('godot-lib.dev.aar')
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * Copy the Godot android library archive dev file into the root bin directory.
|
|
|
+ * Depends on the library build task to ensure the AAR file is generated prior to copying.
|
|
|
+ */
|
|
|
+task copyDevAARToBin(type: Copy) {
|
|
|
+ dependsOn ':lib:assembleTemplateDev'
|
|
|
+ from('lib/build/outputs/aar')
|
|
|
+ into(binDir)
|
|
|
+ include('godot-lib.dev.aar')
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* Copy the Godot android library archive release file into the app module release libs directory.
|
|
|
* Depends on the library build task to ensure the AAR file is generated prior to copying.
|
|
|
*/
|
|
|
task copyReleaseAARToAppModule(type: Copy) {
|
|
|
- dependsOn ':lib:assembleToolsDisabledRelease'
|
|
|
+ dependsOn ':lib:assembleTemplateRelease'
|
|
|
from('lib/build/outputs/aar')
|
|
|
into('app/libs/release')
|
|
|
include('godot-lib.release.aar')
|
|
@@ -104,7 +137,7 @@ task copyReleaseAARToAppModule(type: Copy) {
|
|
|
* Depends on the library build task to ensure the AAR file is generated prior to copying.
|
|
|
*/
|
|
|
task copyReleaseAARToBin(type: Copy) {
|
|
|
- dependsOn ':lib:assembleToolsDisabledRelease'
|
|
|
+ dependsOn ':lib:assembleTemplateRelease'
|
|
|
from('lib/build/outputs/aar')
|
|
|
into(binDir)
|
|
|
include('godot-lib.release.aar')
|
|
@@ -112,7 +145,7 @@ task copyReleaseAARToBin(type: Copy) {
|
|
|
|
|
|
/**
|
|
|
* Generate Godot custom build template by zipping the source files from the app directory, as well
|
|
|
- * as the AAR files generated by 'copyDebugAAR' and 'copyReleaseAAR'.
|
|
|
+ * as the AAR files generated by 'copyDebugAAR', 'copyDevAAR' and 'copyReleaseAAR'.
|
|
|
* The zip file also includes some gradle tools to allow building of the custom build.
|
|
|
*/
|
|
|
task zipCustomBuild(type: Zip) {
|
|
@@ -132,7 +165,13 @@ def templateExcludedBuildTask() {
|
|
|
if (!isAndroidStudio()) {
|
|
|
logger.lifecycle("Excluding Android studio build tasks")
|
|
|
for (String flavor : supportedFlavors) {
|
|
|
- for (String buildType : supportedTargets) {
|
|
|
+ for (String buildType : supportedTargetsMap.keySet()) {
|
|
|
+ if (buildType == "release" && flavor == "editor") {
|
|
|
+ // The editor can't be used with target=release as debugging tools are then not
|
|
|
+ // included, and it would crash on errors instead of reporting them.
|
|
|
+ continue
|
|
|
+ }
|
|
|
+
|
|
|
for (String abi : selectedAbis) {
|
|
|
excludedTasks += ":lib:" + getSconsTaskName(flavor, buildType, abi)
|
|
|
}
|
|
@@ -146,11 +185,7 @@ def templateBuildTasks() {
|
|
|
def tasks = []
|
|
|
|
|
|
// Only build the apks and aar files for which we have native shared libraries.
|
|
|
- for (String target : supportedTargets) {
|
|
|
- if (target == "release_debug") {
|
|
|
- // 'release_debug' is not supported for generating templates.
|
|
|
- continue
|
|
|
- }
|
|
|
+ for (String target : supportedTargetsMap.keySet()) {
|
|
|
File targetLibs = new File("lib/libs/" + target)
|
|
|
if (targetLibs != null
|
|
|
&& targetLibs.isDirectory()
|
|
@@ -180,21 +215,14 @@ task copyEditorDebugBinaryToBin(type: Copy) {
|
|
|
dependsOn ':editor:assembleDebug'
|
|
|
from('editor/build/outputs/apk/debug')
|
|
|
into(binDir)
|
|
|
- include('android_editor_debug.apk')
|
|
|
-}
|
|
|
-
|
|
|
-task copyEditorRelease_debugBinaryToBin(type: Copy) {
|
|
|
- dependsOn ':editor:assembleRelease_debug'
|
|
|
- from('editor/build/outputs/apk/release_debug')
|
|
|
- into(binDir)
|
|
|
- include('android_editor_release_debug.apk')
|
|
|
+ include('android_editor.apk')
|
|
|
}
|
|
|
|
|
|
-task copyEditorReleaseBinaryToBin(type: Copy) {
|
|
|
- dependsOn ':editor:assembleRelease'
|
|
|
- from('editor/build/outputs/apk/release')
|
|
|
+task copyEditorDevBinaryToBin(type: Copy) {
|
|
|
+ dependsOn ':editor:assembleDev'
|
|
|
+ from('editor/build/outputs/apk/dev')
|
|
|
into(binDir)
|
|
|
- include('android_editor_release.apk')
|
|
|
+ include('android_editor_dev.apk')
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -209,9 +237,10 @@ task generateGodotEditor {
|
|
|
|
|
|
def tasks = []
|
|
|
|
|
|
- for (String target : supportedTargets) {
|
|
|
+ for (String target : supportedTargetsMap.keySet()) {
|
|
|
if (target == "release") {
|
|
|
- // Skip release for now since we need to provide signing information.
|
|
|
+ // The editor can't be used with target=release as debugging tools are then not
|
|
|
+ // included, and it would crash on errors instead of reporting them.
|
|
|
continue
|
|
|
}
|
|
|
File targetLibs = new File("lib/libs/tools/" + target)
|
|
@@ -250,7 +279,27 @@ task generateDevTemplate {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * Clean the generated artifacts.
|
|
|
+ * Clean the generated editor artifacts.
|
|
|
+ */
|
|
|
+task cleanGodotEditor(type: Delete) {
|
|
|
+ // Delete the generated native tools libs
|
|
|
+ delete("lib/libs/tools")
|
|
|
+
|
|
|
+ // Delete the library generated AAR files
|
|
|
+ delete("lib/build/outputs/aar")
|
|
|
+
|
|
|
+ // Delete the generated binary apks
|
|
|
+ delete("editor/build/outputs/apk")
|
|
|
+
|
|
|
+ // Delete the Godot editor apks in the Godot bin directory
|
|
|
+ delete("$binDir/android_editor.apk")
|
|
|
+ delete("$binDir/android_editor_dev.apk")
|
|
|
+
|
|
|
+ finalizedBy getTasksByName("clean", true)
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * Clean the generated template artifacts.
|
|
|
*/
|
|
|
task cleanGodotTemplates(type: Delete) {
|
|
|
// Delete the generated native libs
|
|
@@ -267,9 +316,11 @@ task cleanGodotTemplates(type: Delete) {
|
|
|
|
|
|
// Delete the Godot templates in the Godot bin directory
|
|
|
delete("$binDir/android_debug.apk")
|
|
|
+ delete("$binDir/android_dev.apk")
|
|
|
delete("$binDir/android_release.apk")
|
|
|
delete("$binDir/android_source.zip")
|
|
|
delete("$binDir/godot-lib.debug.aar")
|
|
|
+ delete("$binDir/godot-lib.dev.aar")
|
|
|
delete("$binDir/godot-lib.release.aar")
|
|
|
|
|
|
finalizedBy getTasksByName("clean", true)
|