Browse Source

Merge pull request #106288 from raulsntos/android/store_so_uncompressed

[Android] Store native libraries uncompressed in APK
Rémi Verschelde 3 months ago
parent
commit
cc07dc4273
1 changed files with 1 additions and 1 deletions
  1. 1 1
      platform/android/export/export_plugin.cpp

+ 1 - 1
platform/android/export/export_plugin.cpp

@@ -785,7 +785,7 @@ Error EditorExportPlatformAndroid::save_apk_so(void *p_userdata, const SharedObj
 			String abi = abis[abi_index].abi;
 			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);
-			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 + "'.");
 		}
 	}