diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-10-11 09:03:21 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-10-11 09:03:21 +0200 |
commit | 82141729d278bb63a2bcccba041b36405f8490d1 (patch) | |
tree | fcf92adf0c9b1e4719fac8238d4755ac9da0ba27 /platform/android | |
parent | d655a7c09737afdc03d787f861573dd167c9db85 (diff) |
Android: Work around crash in _fix_manifest
Works around #32553, not fixing the underlying cause but
preventing the crash.
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/export/export.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index b61575e2aa..ab5cba04a2 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -828,14 +828,16 @@ class EditorExportPlatformAndroid : public EditorExportPlatform { encode_uint32(min_gles3 ? 0x00030000 : 0x00020000, &p_manifest.write[iofs + 16]); } - if (tname == "meta-data" && attrname == "name" && string_table[attr_value] == "xr_mode_metadata_name") { + // FIXME: `attr_value != 0xFFFFFFFF` below added as a stopgap measure for GH-32553, + // but the issue should be debugged further and properly addressed. + if (tname == "meta-data" && attrname == "name" && attr_value != 0xFFFFFFFF && string_table[attr_value] == "xr_mode_metadata_name") { // Update the meta-data 'android:name' attribute based on the selected XR mode. if (xr_mode_index == 1 /* XRMode.OVR */) { string_table.write[attr_value] = "com.samsung.android.vr.application.mode"; } } - if (tname == "meta-data" && attrname == "value" && string_table[attr_value] == "xr_mode_metadata_value") { + if (tname == "meta-data" && attrname == "value" && attr_value != 0xFFFFFFFF && string_table[attr_value] == "xr_mode_metadata_value") { // Update the meta-data 'android:value' attribute based on the selected XR mode. if (xr_mode_index == 1 /* XRMode.OVR */) { string_table.write[attr_value] = "vr_only"; |