AndroidDeveloperLB
AndroidDeveloperLB
I know it's deprecated, but the samples within are quite nice. Will be great to see them, even if it doesn't use something "special".
See this APK for example: [base.zip](https://github.com/hsiafan/apk-parser/files/4708370/base.zip) It's supposed to be as such:  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...
Seems it can work fine without it. And it's not even the default way to get the signatures of an APK. I've noticed that this library alone takes 3.3 MB...
I know it's used for Java, but Java is supported by Android and this is for APK files... :) Here, something I've made, which checks all of the APKs that...