Browse Source

Skip META-INF from Android Template

masoud bh 9 years ago
parent
commit
14b9579748
1 changed files with 4 additions and 0 deletions
  1. 4 0
      platform/android/export/export.cpp

+ 4 - 0
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);