diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-05-23 23:11:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-23 23:11:53 +0200 |
commit | 3bee0689bc510cde5bb1f074c55141c99eaa6968 (patch) | |
tree | b5383c9f33aba594dddab135ecb1b32dfdc6358e /platform/android/export/export_plugin.cpp | |
parent | d3268c51adcea118f4a4e0b6677b698f87d22396 (diff) | |
parent | d38ffda2c318b1af2ea3cb65c6822eb8ec7e1217 (diff) |
Merge pull request #61333 from m4gr3d/fix_restart_logic_main
Diffstat (limited to 'platform/android/export/export_plugin.cpp')
-rw-r--r-- | platform/android/export/export_plugin.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp index 948e3f9078..e4842320cd 100644 --- a/platform/android/export/export_plugin.cpp +++ b/platform/android/export/export_plugin.cpp @@ -807,7 +807,6 @@ void EditorExportPlatformAndroid::_write_tmp_manifest(const Ref<EditorExportPres } manifest_text += _get_xr_features_tag(p_preset); - manifest_text += _get_instrumentation_tag(p_preset); manifest_text += _get_application_tag(p_preset, _has_storage_permission(perms)); manifest_text += "</manifest>\n"; String manifest_path = vformat("res://android/build/src/%s/AndroidManifest.xml", (p_debug ? "debug" : "release")); @@ -969,10 +968,6 @@ void EditorExportPlatformAndroid::_fix_manifest(const Ref<EditorExportPreset> &p encode_uint32(retain_data_on_uninstall, &p_manifest.write[iofs + 16]); } - if (tname == "instrumentation" && attrname == "targetPackage") { - string_table.write[attr_value] = get_package_name(package_name); - } - if (tname == "activity" && attrname == "screenOrientation") { encode_uint32(screen_orientation, &p_manifest.write[iofs + 16]); } |