@@ -35,17 +35,24 @@ if [ "${CLASSICAL}" == "1" ]; then
35
35
$SCONS platform=android arch=x86_64 $OPTIONS target=editor store_release=${store_release}
36
36
37
37
pushd platform/android/java
38
+ # Generate the regular Android editor.
38
39
./gradlew generateGodotEditor
40
+ # Generate the Android editor for Meta devices.
41
+ ./gradlew generateGodotMetaEditor
39
42
popd
40
43
41
44
mkdir -p /root/out/tools
42
45
# Copy the generated Android editor binaries (apk & aab).
43
46
if [ " $store_release " == " yes" ]; then
44
- cp bin/android_editor_builds/android_editor-release.apk /root/out/tools/android_editor.apk
45
- cp bin/android_editor_builds/android_editor-release.aab /root/out/tools/android_editor.aab
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
46
51
else
47
- cp bin/android_editor_builds/android_editor-debug.apk /root/out/tools/android_editor.apk
48
- cp bin/android_editor_builds/android_editor-debug.aab /root/out/tools/android_editor.aab
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
49
56
fi
50
57
51
58
# Restart from a clean tarball, as we'll copy all the contents
0 commit comments