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.
AAPT only handles assets and resources.
Try instead to look at the files using zip commands, e.g.
zipinfo my_app.apk | grep .so