1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

[Android] Store native libraries uncompressed in APK

This commit is contained in:
Raul Santos
2025-05-11 21:02:44 +02:00
parent 19bb18716e
commit 6464347157

View File

@@ -785,7 +785,7 @@ Error EditorExportPlatformAndroid::save_apk_so(void *p_userdata, const SharedObj
String abi = abis[abi_index].abi; String abi = abis[abi_index].abi;
String dst_path = String("lib").path_join(abi).path_join(p_so.path.get_file()); String dst_path = String("lib").path_join(abi).path_join(p_so.path.get_file());
Vector<uint8_t> array = FileAccess::get_file_as_bytes(p_so.path); Vector<uint8_t> array = FileAccess::get_file_as_bytes(p_so.path);
Error store_err = store_in_apk(ed, dst_path, array); Error store_err = store_in_apk(ed, dst_path, array, Z_NO_COMPRESSION);
ERR_FAIL_COND_V_MSG(store_err, store_err, "Cannot store in apk file '" + dst_path + "'."); ERR_FAIL_COND_V_MSG(store_err, store_err, "Cannot store in apk file '" + dst_path + "'.");
} }
} }