From 232be2e47f4657251ef82e50f0d6f9f4fbd5ed76 Mon Sep 17 00:00:00 2001 From: Raul Santos Date: Mon, 29 Apr 2024 03:51:08 +0200 Subject: [PATCH] .NET: Build Android templates with 'mono' edition Build the Android templates for .NET using the 'mono' edition that contains additional dependencies required by .NET projects to support Android OS APIs (like crypto). --- build-android/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-android/build.sh b/build-android/build.sh index ae56f60..f5cded6 100755 --- a/build-android/build.sh +++ b/build-android/build.sh @@ -104,13 +104,13 @@ if [ "${MONO}" == "1" ]; then $SCONS platform=android arch=x86_64 $OPTIONS $OPTIONS_MONO target=template_release pushd platform/android/java - ./gradlew generateGodotTemplates + ./gradlew generateGodotMonoTemplates popd mkdir -p /root/out/templates-mono cp bin/android_source.zip /root/out/templates-mono/ - cp bin/android_debug.apk /root/out/templates-mono/ - cp bin/android_release.apk /root/out/templates-mono/ + cp bin/android_monoDebug.apk /root/out/templates-mono/android_debug.apk + cp bin/android_monoRelease.apk /root/out/templates-mono/android_release.apk cp bin/godot-lib.template_release.aar /root/out/templates-mono/ fi