Update the `clean` task configuration

Running `gradlew clean` will now properly delete the generated build artifacts

(cherry picked from commit 71c76a4ff2)
This commit is contained in:
Fredia Huya-Kouadio 2022-10-18 20:37:23 -07:00 committed by Haoyu Qiu
parent 422d7fafaa
commit 05cb89855e
1 changed files with 5 additions and 4 deletions

View File

@ -281,6 +281,11 @@ task generateDevTemplate {
finalizedBy 'zipCustomBuild'
}
task clean(type: Delete) {
dependsOn 'cleanGodotEditor'
dependsOn 'cleanGodotTemplates'
}
/**
* Clean the generated editor artifacts.
*/
@ -297,8 +302,6 @@ task cleanGodotEditor(type: Delete) {
// 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)
}
/**
@ -325,6 +328,4 @@ task cleanGodotTemplates(type: Delete) {
delete("$binDir/godot-lib.debug.aar")
delete("$binDir/godot-lib.dev.aar")
delete("$binDir/godot-lib.release.aar")
finalizedBy getTasksByName("clean", true)
}