@@ -37,22 +37,22 @@ if [ "${CLASSICAL}" == "1" ]; then
37
37
pushd platform/android/java
38
38
# Generate the regular Android editor.
39
39
./gradlew generateGodotEditor
40
- # Generate the Android editor for Meta devices.
41
- ./gradlew generateGodotMetaEditor
40
+ # Generate the Android editor for HorizonOS devices.
41
+ ./gradlew generateGodotHorizonOSEditor
42
42
popd
43
43
44
44
mkdir -p /root/out/tools
45
45
# Copy the generated Android editor binaries (apk & aab).
46
46
if [ " $store_release " == " yes" ]; then
47
- cp bin/android_editor_builds/android_editor-google -release.apk /root/out/tools/android_editor.apk
48
- cp bin/android_editor_builds/android_editor-google -release.aab /root/out/tools/android_editor.aab
49
- # For the Meta build, we only copy the apk.
50
- cp bin/android_editor_builds/android_editor-meta -release.apk /root/out/tools/android_editor_meta .apk
47
+ cp bin/android_editor_builds/android_editor-android -release.apk /root/out/tools/android_editor.apk
48
+ cp bin/android_editor_builds/android_editor-android -release.aab /root/out/tools/android_editor.aab
49
+ # For the HorizonOS build, we only copy the apk.
50
+ cp bin/android_editor_builds/android_editor-horizonos -release.apk /root/out/tools/android_editor_horizonos .apk
51
51
else
52
- cp bin/android_editor_builds/android_editor-google -debug.apk /root/out/tools/android_editor.apk
53
- cp bin/android_editor_builds/android_editor-google -debug.aab /root/out/tools/android_editor.aab
54
- # For the Meta build, we only copy the apk.
55
- cp bin/android_editor_builds/android_editor-meta -debug.apk /root/out/tools/android_editor_meta .apk
52
+ cp bin/android_editor_builds/android_editor-android -debug.apk /root/out/tools/android_editor.apk
53
+ cp bin/android_editor_builds/android_editor-android -debug.aab /root/out/tools/android_editor.aab
54
+ # For the HorizonOS build, we only copy the apk.
55
+ cp bin/android_editor_builds/android_editor-horizonos -debug.apk /root/out/tools/android_editor_horizonos .apk
56
56
fi
57
57
58
58
# Restart from a clean tarball, as we'll copy all the contents
0 commit comments