diff options
author | masoud bh <masoud.bh@chmail.ir> | 2015-11-14 20:40:22 +0330 |
---|---|---|
committer | masoud bh <masoud.bh@chmail.ir> | 2015-11-14 20:40:22 +0330 |
commit | 14b95797485d3d17b8e68cf0a811a59be26f06bb (patch) | |
tree | 6cf81e0a21cdb450ef6bf3c42f3f975301f30240 /platform | |
parent | 8adc4ef65b76ee0e8a5fdf6c773d47716fa8511f (diff) |
Skip META-INF from Android Template
Diffstat (limited to 'platform')
-rw-r--r-- | platform/android/export/export.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index f8fc03ec61..1deeb3457a 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1123,6 +1123,10 @@ Error EditorExportPlatformAndroid::export_project(const String& p_path, bool p_d if (file=="lib/armeabi/libgodot_android.so" && !export_arm) { skip=true; } + + if (file.begins_with("META-INF") && _signed) { + skip=true; + } print_line("ADDING: "+file); |