@@ -35,17 +35,24 @@ if [ "${CLASSICAL}" == "1" ]; then
3535 $SCONS platform=android arch=x86_64 $OPTIONS target=editor store_release=${store_release}
3636
3737 pushd platform/android/java
38+ # Generate the regular Android editor.
3839 ./gradlew generateGodotEditor
40+ # Generate the Android editor for Meta devices.
41+ ./gradlew generateGodotMetaEditor
3942 popd
4043
4144 mkdir -p /root/out/tools
4245 # Copy the generated Android editor binaries (apk & aab).
4346 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
4651 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
4956 fi
5057
5158 # Restart from a clean tarball, as we'll copy all the contents
0 commit comments