tsubaki / UnityZip

Other
167 stars 51 forks source link

What version of Android does it support #8

Open Delaley opened 8 years ago

Delaley commented 8 years ago

I tried the following code with ur unzipper. But it doesn't work on Android 2.3 string filepath = "jar:file://" + Application.dataPath + "!/assets/" + "/TEST.zip"; pathtoExtract = filepath; pathtoExport = Application.persistentDataPath; try{ ZipUtil.Unzip(pathtoExtract, pathtoExport); } catch (Exception err) { text.text = err.ToString(); }