Reputation: 1427
Given a android apk file,is there a simple way to find out what jar used in it?
Upvotes: 3
Views: 1823
Reputation: 14755
As far as i know it is not possible to find out what jar-s were used because when creating an android apk the content of the jars is compiled into the apk.
If the developper of the apk hasn-t used an Obfuscater software you can find out the namespaces and classnames involved in the build using the apktool. The Namespaces may be a hint which jars were used.
Upvotes: 4