diff options
author | Fredia Huya-Kouadio <fhuya@meta.com> | 2023-11-26 21:30:48 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-26 21:30:48 -0800 |
commit | c8ef744880f82855cff68d941980fb399c4b2212 (patch) | |
tree | e26fca3a65bf4ce1b2ed76e6814b3c7419388868 /plugins/hello_signals/build.gradle | |
parent | 09386ad9c0070fcaa47262ea6a73542cf8fa2d57 (diff) | |
parent | f32f5b0022629454e135e3dae3c88d5f2a022466 (diff) | |
download | godot-android-samples-c8ef744880f82855cff68d941980fb399c4b2212.tar.gz godot-android-samples-c8ef744880f82855cff68d941980fb399c4b2212.tar.bz2 godot-android-samples-c8ef744880f82855cff68d941980fb399c4b2212.zip |
Merge pull request #5 from m4gr3d/fix_export_scripts_packaging
Update the logic to package the plugins
Diffstat (limited to 'plugins/hello_signals/build.gradle')
-rw-r--r-- | plugins/hello_signals/build.gradle | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/hello_signals/build.gradle b/plugins/hello_signals/build.gradle index b3a6f76..0cf0f1e 100644 --- a/plugins/hello_signals/build.gradle +++ b/plugins/hello_signals/build.gradle @@ -41,17 +41,5 @@ tasks.register('copyReleaseAARToDemoAddons', Copy) { into 'demo/addons/hello_signals_plugin/bin/release' } -tasks.register('copyAddonsToDemo', Copy) { - finalizedBy(copyDebugAARToDemoAddons) - finalizedBy(copyReleaseAARToDemoAddons) - - doFirst { - delete('demo/addons/hello_signals_plugin') - } - from 'src/main/assets/addons/hello_signals_plugin' - into 'demo/addons/hello_signals_plugin' -} - -assemble.finalizedBy(copyAddonsToDemo) assemble.finalizedBy(copyDebugAARToDemoAddons) assemble.finalizedBy(copyReleaseAARToDemoAddons) |