Skip to content

Commit 232be2e

Browse files
committed
.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).
1 parent 0f11496 commit 232be2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build-android/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ if [ "${MONO}" == "1" ]; then
104104
$SCONS platform=android arch=x86_64 $OPTIONS $OPTIONS_MONO target=template_release
105105

106106
pushd platform/android/java
107-
./gradlew generateGodotTemplates
107+
./gradlew generateGodotMonoTemplates
108108
popd
109109

110110
mkdir -p /root/out/templates-mono
111111
cp bin/android_source.zip /root/out/templates-mono/
112-
cp bin/android_debug.apk /root/out/templates-mono/
113-
cp bin/android_release.apk /root/out/templates-mono/
112+
cp bin/android_monoDebug.apk /root/out/templates-mono/android_debug.apk
113+
cp bin/android_monoRelease.apk /root/out/templates-mono/android_release.apk
114114
cp bin/godot-lib.template_release.aar /root/out/templates-mono/
115115
fi
116116

0 commit comments

Comments
 (0)