google / archive-patcher

Automatically exported from code.google.com/p/archive-patcher
Apache License 2.0
528 stars 73 forks source link

Very slow to apply patch on Android device #168

Open fzyzcjy opened 3 years ago

fzyzcjy commented 3 years ago

Hi I try to use the applier on an Android device. However, for about 15MB old apk and 2MB patch file, it takes ~8s to complete. It is normal? (Seems to be very slow...) Thanks!

sisong commented 3 years ago

Your newApk should used zlib and set compressLevel 9, so recompress it very slow when patch.
You can recompress the newApk by compressLevel 6 befor release, patch speed meybe to 2x (takes ~4s?)

fzyzcjy commented 3 years ago

@sisong Sounds reasonable, thanks!

sisong commented 3 years ago

optimize speed, recompress apk can used muti-thread on android device, but need edit source code.