Resolved: Get size of .so files in APK using aapt

Question:

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.

Answer:

AAPT only handles assets and resources.
Try instead to look at the files using zip commands, e.g.
zipinfo my_app.apk | grep .so

If you have better answer, please add a comment about this, thank you!