REAndroid / APKEditor

Powerful android apk editor - aapt/aapt2 independent
Apache License 2.0
647 stars 95 forks source link

Input XAPK path? #6

Closed VanHoevenTR closed 1 year ago

VanHoevenTR commented 1 year ago

Can you support input XAPK path to automatically extract it and proceed the merging process? I'm lazy to extract it manually just to use the input path

REAndroid commented 1 year ago

XAPK , APKM ... are used by apk sharing sites and are not standard files. For example XAPK uses Zip-3.0 compression which is not supported by native java(1.8) ZipInputStream

VanHoevenTR commented 1 year ago

oh, I see. Maybe some external libs could help?

REAndroid commented 1 year ago

I couldn't get good zip lib without compromising speed and memory. I am not even satisfied with performance of native java zip lib. Maybe i will do zip lib from scratch in the future :)

REAndroid commented 1 year ago

Now it supports XAPK, APKM, APKS

VanHoevenTR commented 1 year ago

Thanks, finally I can be lazy haha. it works perfectly