@@ -40,20 +40,24 @@ if [ "${CLASSICAL}" == "1" ]; then
40
40
./gradlew generateGodotEditor
41
41
# Generate the Android editor for HorizonOS devices.
42
42
./gradlew generateGodotHorizonOSEditor
43
+ # Generate the Android editor for PicoOS devices.
44
+ ./gradlew generateGodotPicoOSEditor
43
45
popd
44
46
45
47
mkdir -p /root/out/tools
46
48
# Copy the generated Android editor binaries (apk & aab).
47
49
if [ " $store_release " == " yes" ]; then
48
50
cp bin/android_editor_builds/android_editor-android-release.apk /root/out/tools/android_editor.apk
49
51
cp bin/android_editor_builds/android_editor-android-release.aab /root/out/tools/android_editor.aab
50
- # For the HorizonOS build , we only copy the apk.
52
+ # For the HorizonOS and PicoOS builds , we only copy the apk.
51
53
cp bin/android_editor_builds/android_editor-horizonos-release.apk /root/out/tools/android_editor_horizonos.apk
54
+ cp bin/android_editor_builds/android_editor-picoos-release.apk /root/out/tools/android_editor_picoos.apk
52
55
else
53
56
cp bin/android_editor_builds/android_editor-android-debug.apk /root/out/tools/android_editor.apk
54
57
cp bin/android_editor_builds/android_editor-android-debug.aab /root/out/tools/android_editor.aab
55
- # For the HorizonOS build, we only copy the apk.
58
+ # For the HorizonOS and PicoOS build, we only copy the apk.
56
59
cp bin/android_editor_builds/android_editor-horizonos-debug.apk /root/out/tools/android_editor_horizonos.apk
60
+ cp bin/android_editor_builds/android_editor-picoos-debug.apk /root/out/tools/android_editor_picoos.apk
57
61
fi
58
62
59
63
# Restart from a clean tarball, as we'll copy all the contents
0 commit comments