I created apk using maven + eclipse .
This is a single file and contains internal links to libraries given by mvn dependencies . Everything works fine on my android, but I need to display in runtime version of referenced libs . I know how to display the version of my application (from androidManifest.xml), but the problem is to get the version of another used library , which is somehow included in my apk.
Inside apk, I donβt see my referenced bans, I believe this is done by class.dex .
I found a way to get the version from jar lib, but this does not work for apk.
Can I find the version of the internal reference library in run-time?
source share