diff options
author | Nathan Franke <natfra@pm.me> | 2020-11-12 12:56:18 -0600 |
---|---|---|
committer | Nathan Franke <natfra@pm.me> | 2020-11-13 10:30:40 -0600 |
commit | 20bca313c0266d5d5508801f7b9b809fc26c2092 (patch) | |
tree | c131b3db16c161214a19003b7477e18d5cdf749c | |
parent | f73374629dd57d3eea6a960859ca223fa2d95fc4 (diff) |
Fix Android Export jarsigner error with *.import whitelist
-rw-r--r-- | editor/editor_export.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp index 97800fe961..3aeffede82 100644 --- a/editor/editor_export.cpp +++ b/editor/editor_export.cpp @@ -737,6 +737,9 @@ Error EditorExportPlatform::export_project_files(const Ref<EditorExportPreset> & _edit_filter_list(paths, p_preset->get_include_filter(), false); _edit_filter_list(paths, p_preset->get_exclude_filter(), true); + // Ignore import files, since these are automatically added to the jar later with the resources + _edit_filter_list(paths, String("*.import"), true); + // Get encryption filters. bool enc_pck = p_preset->get_enc_pck(); Vector<String> enc_in_filters; |