2022-05-31 18:10:15 +00:00
|
|
|
plugins {
|
|
|
|
id 'io.github.gradle-nexus.publish-plugin'
|
|
|
|
}
|
|
|
|
|
|
|
|
apply from: 'app/config.gradle'
|
|
|
|
apply from: 'scripts/publish-root.gradle'
|
|
|
|
|
2023-03-06 06:26:19 +00:00
|
|
|
ext {
|
|
|
|
PUBLISH_VERSION = getGodotPublishVersion()
|
|
|
|
}
|
|
|
|
|
|
|
|
group = ossrhGroupId
|
|
|
|
version = PUBLISH_VERSION
|
|
|
|
|
2019-04-07 18:46:52 +00:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
2019-08-27 09:16:33 +00:00
|
|
|
google()
|
2019-09-03 00:31:51 +00:00
|
|
|
mavenCentral()
|
2024-01-17 21:44:11 +00:00
|
|
|
gradlePluginPortal()
|
|
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
2024-04-20 17:24:11 +00:00
|
|
|
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/"}
|
2019-04-07 18:46:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-23 05:23:59 +00:00
|
|
|
ext {
|
2021-12-16 01:38:10 +00:00
|
|
|
supportedAbis = ["arm32", "arm64", "x86_32", "x86_64"]
|
2021-06-25 13:45:16 +00:00
|
|
|
supportedFlavors = ["editor", "template"]
|
2024-09-13 15:53:29 +00:00
|
|
|
supportedAndroidDistributions = ["android", "horizonos"]
|
2022-10-05 15:24:50 +00:00
|
|
|
supportedFlavorsBuildTypes = [
|
2023-03-01 22:09:30 +00:00
|
|
|
"editor": ["dev", "debug", "release"],
|
2022-10-05 15:24:50 +00:00
|
|
|
"template": ["dev", "debug", "release"]
|
|
|
|
]
|
2024-02-09 16:26:53 +00:00
|
|
|
supportedEditions = ["standard", "mono"]
|
2019-09-23 05:23:59 +00:00
|
|
|
|
2021-06-25 13:45:16 +00:00
|
|
|
// Used by gradle to specify which architecture to build for by default when running
|
|
|
|
// `./gradlew build` (this command is usually used by Android Studio).
|
2019-09-23 05:23:59 +00:00
|
|
|
// If building manually on the command line, it's recommended to use the
|
2021-06-25 13:45:16 +00:00
|
|
|
// `./gradlew generateGodotTemplates` build command instead after running the `scons` command(s).
|
|
|
|
// The {selectedAbis} values must be from the {supportedAbis} values.
|
2021-12-16 01:38:10 +00:00
|
|
|
selectedAbis = ["arm64"]
|
2019-09-23 05:23:59 +00:00
|
|
|
|
2024-04-28 05:23:11 +00:00
|
|
|
rootDir = "../../.."
|
|
|
|
binDir = "$rootDir/bin/"
|
|
|
|
androidEditorBuildsDir = "$binDir/android_editor_builds/"
|
|
|
|
}
|
2019-09-23 05:23:59 +00:00
|
|
|
|
2021-06-25 13:45:16 +00:00
|
|
|
def getSconsTaskName(String flavor, String buildType, String abi) {
|
|
|
|
return "compileGodotNativeLibs" + flavor.capitalize() + buildType.capitalize() + abi.capitalize()
|
2019-09-23 05:23:59 +00:00
|
|
|
}
|
2019-04-07 18:46:52 +00:00
|
|
|
|
2019-09-03 00:31:51 +00:00
|
|
|
/**
|
2023-02-01 23:17:06 +00:00
|
|
|
* Generate Godot gradle build template by zipping the source files from the app directory, as well
|
2021-06-25 13:45:16 +00:00
|
|
|
* as the AAR files generated by 'copyDebugAAR', 'copyDevAAR' and 'copyReleaseAAR'.
|
2023-02-01 23:17:06 +00:00
|
|
|
* The zip file also includes some gradle tools to enable gradle builds from the Godot Editor.
|
2019-09-03 00:31:51 +00:00
|
|
|
*/
|
2023-02-01 23:17:06 +00:00
|
|
|
task zipGradleBuild(type: Zip) {
|
2024-02-09 16:26:53 +00:00
|
|
|
onlyIf { generateGodotTemplates.state.executed || generateGodotMonoTemplates.state.executed || generateDevTemplate.state.executed }
|
2019-09-23 05:23:59 +00:00
|
|
|
doFirst {
|
2023-02-01 23:17:06 +00:00
|
|
|
logger.lifecycle("Generating Godot gradle build template")
|
2019-09-23 05:23:59 +00:00
|
|
|
}
|
2021-07-20 20:21:14 +00:00
|
|
|
from(fileTree(dir: 'app', excludes: ['**/build/**', '**/.gradle/**', '**/*.iml']), fileTree(dir: '.', includes: ['gradlew', 'gradlew.bat', 'gradle/**']))
|
2019-09-03 00:31:51 +00:00
|
|
|
include '**/*'
|
2021-06-06 18:09:16 +00:00
|
|
|
archiveFileName = 'android_source.zip'
|
|
|
|
destinationDirectory = file(binDir)
|
2019-04-07 18:46:52 +00:00
|
|
|
}
|
|
|
|
|
2023-11-09 14:49:50 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the scons build tasks responsible for generating the Godot native shared
|
|
|
|
* libraries should be excluded.
|
|
|
|
*/
|
|
|
|
def excludeSconsBuildTasks() {
|
|
|
|
return !isAndroidStudio() && !project.hasProperty("generateNativeLibs")
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates the list of build tasks that should be excluded from the build process.\
|
|
|
|
*/
|
2021-03-10 23:03:17 +00:00
|
|
|
def templateExcludedBuildTask() {
|
2019-09-23 05:23:59 +00:00
|
|
|
// We exclude these gradle tasks so we can run the scons command manually.
|
2021-03-10 23:03:17 +00:00
|
|
|
def excludedTasks = []
|
2023-11-09 14:49:50 +00:00
|
|
|
if (excludeSconsBuildTasks()) {
|
2021-12-21 15:41:12 +00:00
|
|
|
logger.lifecycle("Excluding Android studio build tasks")
|
2021-06-25 13:45:16 +00:00
|
|
|
for (String flavor : supportedFlavors) {
|
2022-10-05 15:24:50 +00:00
|
|
|
String[] supportedBuildTypes = supportedFlavorsBuildTypes[flavor]
|
|
|
|
for (String buildType : supportedBuildTypes) {
|
2021-06-25 13:45:16 +00:00
|
|
|
for (String abi : selectedAbis) {
|
|
|
|
excludedTasks += ":lib:" + getSconsTaskName(flavor, buildType, abi)
|
|
|
|
}
|
|
|
|
}
|
2021-12-21 15:41:12 +00:00
|
|
|
}
|
2019-09-23 05:23:59 +00:00
|
|
|
}
|
2021-03-10 23:03:17 +00:00
|
|
|
return excludedTasks
|
|
|
|
}
|
2019-09-23 05:23:59 +00:00
|
|
|
|
2023-11-09 14:49:50 +00:00
|
|
|
/**
|
|
|
|
* Generates the build tasks for the given flavor
|
|
|
|
* @param flavor Must be one of the supported flavors ('template' / 'editor')
|
2024-02-09 16:26:53 +00:00
|
|
|
* @param edition Must be one of the supported editions ('standard' / 'mono')
|
2024-09-13 15:53:29 +00:00
|
|
|
* @param androidDistro Must be one of the supported Android distributions ('android' / 'horizonos')
|
2023-11-09 14:49:50 +00:00
|
|
|
*/
|
2024-02-09 16:26:53 +00:00
|
|
|
def generateBuildTasks(String flavor = "template", String edition = "standard", String androidDistro = "android") {
|
2023-11-09 14:49:50 +00:00
|
|
|
if (!supportedFlavors.contains(flavor)) {
|
|
|
|
throw new GradleException("Invalid build flavor: $flavor")
|
|
|
|
}
|
2024-09-13 15:53:29 +00:00
|
|
|
if (!supportedAndroidDistributions.contains(androidDistro)) {
|
|
|
|
throw new GradleException("Invalid Android distribution: $androidDistro")
|
2024-04-20 17:24:11 +00:00
|
|
|
}
|
2024-02-09 16:26:53 +00:00
|
|
|
if (!supportedEditions.contains(edition)) {
|
|
|
|
throw new GradleException("Invalid build edition: $edition")
|
|
|
|
}
|
|
|
|
if (edition == "mono" && flavor != "template") {
|
|
|
|
throw new GradleException("'mono' edition only supports the 'template' flavor.")
|
|
|
|
}
|
2023-11-09 14:49:50 +00:00
|
|
|
|
2024-09-13 15:53:29 +00:00
|
|
|
String capitalizedAndroidDistro = androidDistro.capitalize()
|
2024-04-28 05:23:11 +00:00
|
|
|
def buildTasks = []
|
2019-09-23 05:23:59 +00:00
|
|
|
|
2024-04-20 17:24:11 +00:00
|
|
|
// Only build the binary files for which we have native shared libraries unless we intend
|
2023-11-09 14:49:50 +00:00
|
|
|
// to run the scons build tasks.
|
|
|
|
boolean excludeSconsBuildTasks = excludeSconsBuildTasks()
|
|
|
|
boolean isTemplate = flavor == "template"
|
|
|
|
String libsDir = isTemplate ? "lib/libs/" : "lib/libs/tools/"
|
|
|
|
for (String target : supportedFlavorsBuildTypes[flavor]) {
|
|
|
|
File targetLibs = new File(libsDir + target)
|
2024-04-28 05:23:11 +00:00
|
|
|
|
|
|
|
String targetSuffix = target
|
|
|
|
if (target == "dev") {
|
|
|
|
targetSuffix = "debug.dev"
|
|
|
|
}
|
|
|
|
|
2023-11-09 14:49:50 +00:00
|
|
|
if (!excludeSconsBuildTasks || (targetLibs != null
|
2019-10-18 16:59:04 +00:00
|
|
|
&& targetLibs.isDirectory()
|
|
|
|
&& targetLibs.listFiles() != null
|
2023-11-09 14:49:50 +00:00
|
|
|
&& targetLibs.listFiles().length > 0)) {
|
2024-04-28 05:23:11 +00:00
|
|
|
|
2019-10-18 16:59:04 +00:00
|
|
|
String capitalizedTarget = target.capitalize()
|
2024-02-09 16:26:53 +00:00
|
|
|
String capitalizedEdition = edition.capitalize()
|
2023-11-09 14:49:50 +00:00
|
|
|
if (isTemplate) {
|
2024-04-28 05:23:11 +00:00
|
|
|
// Copy the Godot android library archive file into the app module libs directory.
|
|
|
|
// Depends on the library build task to ensure the AAR file is generated prior to copying.
|
|
|
|
String copyAARTaskName = "copy${capitalizedTarget}AARToAppModule"
|
|
|
|
if (tasks.findByName(copyAARTaskName) != null) {
|
|
|
|
buildTasks += tasks.getByName(copyAARTaskName)
|
|
|
|
} else {
|
|
|
|
buildTasks += tasks.create(name: copyAARTaskName, type: Copy) {
|
|
|
|
dependsOn ":lib:assembleTemplate${capitalizedTarget}"
|
|
|
|
from('lib/build/outputs/aar')
|
|
|
|
include("godot-lib.template_${targetSuffix}.aar")
|
|
|
|
into("app/libs/${target}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the Godot android library archive file into the root bin directory.
|
|
|
|
// Depends on the library build task to ensure the AAR file is generated prior to copying.
|
|
|
|
String copyAARToBinTaskName = "copy${capitalizedTarget}AARToBin"
|
|
|
|
if (tasks.findByName(copyAARToBinTaskName) != null) {
|
|
|
|
buildTasks += tasks.getByName(copyAARToBinTaskName)
|
|
|
|
} else {
|
|
|
|
buildTasks += tasks.create(name: copyAARToBinTaskName, type: Copy) {
|
|
|
|
dependsOn ":lib:assembleTemplate${capitalizedTarget}"
|
|
|
|
from('lib/build/outputs/aar')
|
|
|
|
include("godot-lib.template_${targetSuffix}.aar")
|
|
|
|
into(binDir)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the generated binary template into the Godot bin directory.
|
|
|
|
// Depends on the app build task to ensure the binary is generated prior to copying.
|
2024-02-09 16:26:53 +00:00
|
|
|
String copyBinaryTaskName = "copy${capitalizedEdition}${capitalizedTarget}BinaryToBin"
|
2024-04-28 05:23:11 +00:00
|
|
|
if (tasks.findByName(copyBinaryTaskName) != null) {
|
|
|
|
buildTasks += tasks.getByName(copyBinaryTaskName)
|
|
|
|
} else {
|
|
|
|
buildTasks += tasks.create(name: copyBinaryTaskName, type: Copy) {
|
2024-02-09 16:26:53 +00:00
|
|
|
String filenameSuffix = edition == "mono" ? "${edition}${capitalizedTarget}" : target
|
|
|
|
dependsOn ":app:assemble${capitalizedEdition}${capitalizedTarget}"
|
|
|
|
from("app/build/outputs/apk/${edition}/${target}")
|
2024-04-28 05:23:11 +00:00
|
|
|
into(binDir)
|
2024-02-09 16:26:53 +00:00
|
|
|
include("android_${filenameSuffix}.apk")
|
2024-04-28 05:23:11 +00:00
|
|
|
}
|
|
|
|
}
|
2023-11-09 14:49:50 +00:00
|
|
|
} else {
|
|
|
|
// Copy the generated editor apk to the bin directory.
|
2024-09-13 15:53:29 +00:00
|
|
|
String copyEditorApkTaskName = "copyEditor${capitalizedAndroidDistro}${capitalizedTarget}ApkToBin"
|
2024-04-28 05:23:11 +00:00
|
|
|
if (tasks.findByName(copyEditorApkTaskName) != null) {
|
|
|
|
buildTasks += tasks.getByName(copyEditorApkTaskName)
|
|
|
|
} else {
|
|
|
|
buildTasks += tasks.create(name: copyEditorApkTaskName, type: Copy) {
|
2024-09-13 15:53:29 +00:00
|
|
|
dependsOn ":editor:assemble${capitalizedAndroidDistro}${capitalizedTarget}"
|
|
|
|
from("editor/build/outputs/apk/${androidDistro}/${target}")
|
2024-04-28 05:23:11 +00:00
|
|
|
into(androidEditorBuildsDir)
|
2024-09-13 15:53:29 +00:00
|
|
|
include("android_editor-${androidDistro}-${target}*.apk")
|
2024-04-28 05:23:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-09 14:49:50 +00:00
|
|
|
// Copy the generated editor aab to the bin directory.
|
2024-09-13 15:53:29 +00:00
|
|
|
String copyEditorAabTaskName = "copyEditor${capitalizedAndroidDistro}${capitalizedTarget}AabToBin"
|
2024-04-28 05:23:11 +00:00
|
|
|
if (tasks.findByName(copyEditorAabTaskName) != null) {
|
|
|
|
buildTasks += tasks.getByName(copyEditorAabTaskName)
|
|
|
|
} else {
|
|
|
|
buildTasks += tasks.create(name: copyEditorAabTaskName, type: Copy) {
|
2024-09-13 15:53:29 +00:00
|
|
|
dependsOn ":editor:bundle${capitalizedAndroidDistro}${capitalizedTarget}"
|
|
|
|
from("editor/build/outputs/bundle/${androidDistro}${capitalizedTarget}")
|
2024-04-28 05:23:11 +00:00
|
|
|
into(androidEditorBuildsDir)
|
2024-09-13 15:53:29 +00:00
|
|
|
include("android_editor-${androidDistro}-${target}*.aab")
|
2024-04-28 05:23:11 +00:00
|
|
|
}
|
|
|
|
}
|
2023-11-09 14:49:50 +00:00
|
|
|
}
|
2019-10-18 16:59:04 +00:00
|
|
|
} else {
|
|
|
|
logger.lifecycle("No native shared libs for target $target. Skipping build.")
|
2019-09-23 05:23:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-28 05:23:11 +00:00
|
|
|
return buildTasks
|
2021-06-25 13:45:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-09-13 15:53:29 +00:00
|
|
|
* Generate the Godot Editor binaries for Android devices.
|
2021-06-25 13:45:16 +00:00
|
|
|
*
|
2023-11-09 14:49:50 +00:00
|
|
|
* Note: Unless the 'generateNativeLibs` argument is specified, the Godot 'tools' shared libraries
|
|
|
|
* must have been generated (via scons) prior to running this gradle task.
|
2024-04-20 17:24:11 +00:00
|
|
|
* The task will only build the binaries for which the shared libraries is available.
|
2021-06-25 13:45:16 +00:00
|
|
|
*/
|
|
|
|
task generateGodotEditor {
|
|
|
|
gradle.startParameter.excludedTaskNames += templateExcludedBuildTask()
|
2024-02-09 16:26:53 +00:00
|
|
|
dependsOn = generateBuildTasks("editor", "standard", "android")
|
2024-04-20 17:24:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-09-13 15:53:29 +00:00
|
|
|
* Generate the Godot Editor binaries for HorizonOS devices.
|
2024-04-20 17:24:11 +00:00
|
|
|
*
|
|
|
|
* Note: Unless the 'generateNativeLibs` argument is specified, the Godot 'tools' shared libraries
|
|
|
|
* must have been generated (via scons) prior to running this gradle task.
|
|
|
|
* The task will only build the binaries for which the shared libraries is available.
|
|
|
|
*/
|
2024-09-13 15:53:29 +00:00
|
|
|
task generateGodotHorizonOSEditor {
|
2024-04-20 17:24:11 +00:00
|
|
|
gradle.startParameter.excludedTaskNames += templateExcludedBuildTask()
|
2024-02-09 16:26:53 +00:00
|
|
|
dependsOn = generateBuildTasks("editor", "standard", "horizonos")
|
2021-06-25 13:45:16 +00:00
|
|
|
}
|
|
|
|
|
2021-03-10 23:03:17 +00:00
|
|
|
/**
|
|
|
|
* Master task used to coordinate the tasks defined above to generate the set of Godot templates.
|
|
|
|
*/
|
2021-10-23 12:46:01 +00:00
|
|
|
task generateGodotTemplates {
|
|
|
|
gradle.startParameter.excludedTaskNames += templateExcludedBuildTask()
|
2023-11-09 14:49:50 +00:00
|
|
|
dependsOn = generateBuildTasks("template")
|
2021-03-10 23:03:17 +00:00
|
|
|
|
2023-02-01 23:17:06 +00:00
|
|
|
finalizedBy 'zipGradleBuild'
|
2021-03-10 23:03:17 +00:00
|
|
|
}
|
|
|
|
|
2024-02-09 16:26:53 +00:00
|
|
|
/**
|
|
|
|
* Master task used to coordinate the tasks defined above to generate the set of Godot templates
|
|
|
|
* for the 'mono' edition of the engine.
|
|
|
|
*/
|
|
|
|
task generateGodotMonoTemplates {
|
|
|
|
gradle.startParameter.excludedTaskNames += templateExcludedBuildTask()
|
|
|
|
dependsOn = generateBuildTasks("template", "mono")
|
|
|
|
|
|
|
|
finalizedBy 'zipGradleBuild'
|
|
|
|
}
|
|
|
|
|
2021-03-10 23:03:17 +00:00
|
|
|
/**
|
|
|
|
* Generates the same output as generateGodotTemplates but with dev symbols
|
|
|
|
*/
|
2021-10-23 12:46:01 +00:00
|
|
|
task generateDevTemplate {
|
2021-03-10 23:03:17 +00:00
|
|
|
// add parameter to set symbols to true
|
2024-06-07 07:49:23 +00:00
|
|
|
project.ext.doNotStrip = "true"
|
2021-03-10 23:03:17 +00:00
|
|
|
|
2021-10-23 12:46:01 +00:00
|
|
|
gradle.startParameter.excludedTaskNames += templateExcludedBuildTask()
|
2023-11-09 14:49:50 +00:00
|
|
|
dependsOn = generateBuildTasks("template")
|
2021-03-10 23:03:17 +00:00
|
|
|
|
2023-02-01 23:17:06 +00:00
|
|
|
finalizedBy 'zipGradleBuild'
|
2019-09-23 05:23:59 +00:00
|
|
|
}
|
|
|
|
|
2022-10-18 13:41:09 +00:00
|
|
|
task clean(type: Delete) {
|
|
|
|
dependsOn 'cleanGodotEditor'
|
|
|
|
dependsOn 'cleanGodotTemplates'
|
|
|
|
}
|
|
|
|
|
2019-09-23 05:23:59 +00:00
|
|
|
/**
|
2021-06-25 13:45:16 +00:00
|
|
|
* 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")
|
|
|
|
|
2023-03-01 22:09:30 +00:00
|
|
|
// Delete the generated aab binaries
|
|
|
|
delete("editor/build/outputs/bundle")
|
|
|
|
|
|
|
|
// Delete the Godot editor apks & aabs in the Godot bin directory
|
|
|
|
delete(androidEditorBuildsDir)
|
2021-06-25 13:45:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clean the generated template artifacts.
|
2019-09-23 05:23:59 +00:00
|
|
|
*/
|
|
|
|
task cleanGodotTemplates(type: Delete) {
|
2020-03-04 17:21:59 +00:00
|
|
|
// Delete the generated native libs
|
|
|
|
delete("lib/libs")
|
2019-09-23 05:23:59 +00:00
|
|
|
|
2020-03-04 17:21:59 +00:00
|
|
|
// Delete the library generated AAR files
|
|
|
|
delete("lib/build/outputs/aar")
|
2019-09-23 05:23:59 +00:00
|
|
|
|
2020-03-04 17:21:59 +00:00
|
|
|
// Delete the app libs directory contents
|
|
|
|
delete("app/libs")
|
2019-09-23 05:23:59 +00:00
|
|
|
|
2020-03-04 17:21:59 +00:00
|
|
|
// Delete the generated binary apks
|
|
|
|
delete("app/build/outputs/apk")
|
2019-09-23 05:23:59 +00:00
|
|
|
|
2020-03-04 17:21:59 +00:00
|
|
|
// Delete the Godot templates in the Godot bin directory
|
|
|
|
delete("$binDir/android_debug.apk")
|
2021-06-25 13:45:16 +00:00
|
|
|
delete("$binDir/android_dev.apk")
|
2020-03-04 17:21:59 +00:00
|
|
|
delete("$binDir/android_release.apk")
|
2024-02-09 16:26:53 +00:00
|
|
|
delete("$binDir/android_monoDebug.apk")
|
|
|
|
delete("$binDir/android_monoDev.apk")
|
|
|
|
delete("$binDir/android_monoRelease.apk")
|
2020-03-04 17:21:59 +00:00
|
|
|
delete("$binDir/android_source.zip")
|
2022-10-05 15:24:50 +00:00
|
|
|
delete("$binDir/godot-lib.template_debug.aar")
|
|
|
|
delete("$binDir/godot-lib.template_debug.dev.aar")
|
|
|
|
delete("$binDir/godot-lib.template_release.aar")
|
2020-05-27 19:04:31 +00:00
|
|
|
|
2022-10-18 13:41:09 +00:00
|
|
|
// Cover deletion for the libs using the previous naming scheme
|
|
|
|
delete("$binDir/godot-lib.debug.aar")
|
|
|
|
delete("$binDir/godot-lib.dev.aar")
|
|
|
|
delete("$binDir/godot-lib.release.aar")
|
2019-09-03 00:31:51 +00:00
|
|
|
}
|