AndroidDeveloperLB

Results 602 issues of AndroidDeveloperLB

I suggest to add a field that says which kind this APK file is : - A normal standalone APK - true if not of the other types mentioned below....

To demonstrate this issue, suppose instead of an adaptive icon, I use VectorDrawable for API 24: ``` android:icon="@drawable/ic_launcher_foreground" ``` Doing so, I can see that it thinks it's an AdaptiveIcon,...

I can see that it can find the data, but I don't get how to parse it into real VectorDrawable. Try this sample, for example, on the foreground icon of...

It seems the library handles AdaptiveIcon that consists of VectorDrawable in a wrong way. For some reason, it shows as if it's a bitmap, but only for the background: ![image](https://user-images.githubusercontent.com/5357526/68708951-60c8d400-059d-11ea-9955-b31f397f9fe6.png)...

I've noticed that now we have the ability to get all the icons. Is it possible to get it based on current configuration?

I've tried recently to go over all apps that are installed on the device, and get their names using this library. I've found many that the library fail to parse,...

Those have special attributes in their manifest files, showing that they are indeed split APK files. Attached here the split APK files of AirBnb, for example: [split.zip](https://github.com/hsiafan/apk-parser/files/3268954/split.zip)

Suppose all I need is to parse the APK files to get their intent-filters, can you please suggest what I could do to make it work faster, and with less...

Without actual decompressing into a stream of specific entries, just like ZipInputStream

I've noticed some edge cases that their SDK doesn't cover, such as inflation of Views (example is inflation via the class that extends Application, to show content on top using...