-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong Local header signature: 0xFF8 #20
Comments
Same here |
I found a solution, while iterating through the elements of the ZIP, instead of getting the stream in current way then do this for iterate: And this to access the stream: I think while iterating through stream this is failing as Android v2 signature scheme is adding "APK Signing Block" just before of "Central Directory" part of the zip. And I think zip library can't manage this. In fact, don't try to modify the original zip file and create a new copy of it. As the "Central Directory" management gets crazy and few files are lost. I hope this would help someone. |
Worked for me as well, thx. |
For anyone interested, here's a snippet of code that fixed my issue (thanks @forlayo for the solution)
|
If the APK package name contains Chinese, the program will become very slow. |
good ! manifestXml = manifest.ReadManifestFileIntoXml(manifest_xml); |
good,Worked for me as well, thx. |
I have just follow this page.
And while at run-time, I am getting this error. Wrong Local header signature: 0xFF8
My basic aim is to read basic information(like version, logo, name) of .apk file.
Need help ASAP
The text was updated successfully, but these errors were encountered: