'Get size of .so files in APK using aapt

I've tried using aapt commands to get .so files in APK,

   aapt l my_apk.apk | grep .so

but can we get the actual sizes of them?

any help is appreciated.



Solution 1:[1]

AAPT only handles assets and resources.

Try instead to look at the files using zip commands, e.g.

zipinfo my_app.apk | grep .so

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Pierre