apk-parser icon indicating copy to clipboard operation
apk-parser copied to clipboard

Apk parser for java

Results 48 apk-parser issues
Sort by recently updated
recently updated
newest added

Muito bom ótimo

I am using version v2.6.9 but I encountered issue when parsing v2 signed APK (BufferOverFlow) which v2.6.10 can fix. Thus, I was forced to update version to v2.6.10. I noticed...

See this APK for example: [base.zip](https://github.com/hsiafan/apk-parser/files/4708370/base.zip) It's supposed to be as such: ![image](https://user-images.githubusercontent.com/5357526/83362194-0a37b180-a398-11ea-830a-d6ea3f2a6978.png) But, it has only 2 icons that it returns me when calling `ApkFile(filePath).allIcons` : `0 = {Icon@9908}...

[This](https://stackoverflow.com/a/62114760/878126 ), which is based on [this](https://stackoverflow.com/a/59023594/878126). The problem there is that it's using reflection. However, the reflection is just to parse binary XML files, which I think the current...

Use InputStream , DocumentFile or Uri instead. The reason: In the near future, Google will block storage permission, which requires developers to handle files outside of the scope of the...

It could help with some of the things that are missing on this project, and vice versa: https://github.com/secure-software-engineering/FlowDroid Google also has something, but it's quite old: https://github.com/google/android-classyshark

v2.6.10 I've now tested YouTube APK, and it seems that even though in the manifest XML content that it gets, I can see `android:isSplitRequired="true" ` , when checking the apkMeta...

v2.6.10 Given this APK from the emulator: [Chrome.zip](https://github.com/hsiafan/apk-parser/files/4464199/Chrome.zip) I get this manifest XML file, which is invalid: [chrome manifest.zip](https://github.com/hsiafan/apk-parser/files/4464197/chrome.manifest.zip) From the first few lines you can see that it's invalid:...

v2.6.10 Found out that for some APK files, it failed to get their label/name. Sometimes it returns null, so in this case I used the package name according to [the...