Merge pull request #2784 from masoudbh3/resigning-android-template

Skip META-INF from Android Template
This commit is contained in:
Juan Linietsky 2015-11-18 18:35:08 -03:00
commit 4fdb4452b8

View File

@ -1123,6 +1123,10 @@ Error EditorExportPlatformAndroid::export_project(const String& p_path, bool p_d
if (file=="lib/armeabi/libgodot_android.so" && !export_arm) { if (file=="lib/armeabi/libgodot_android.so" && !export_arm) {
skip=true; skip=true;
} }
if (file.begins_with("META-INF") && _signed) {
skip=true;
}
print_line("ADDING: "+file); print_line("ADDING: "+file);