Reputation: 38805
Suppose I got an apk file, how can I check the package of it?
Should I use the tools like apktool to fulfill this action?
The package mean "com.example.helloworld"
Thanks
Upvotes: 2
Views: 520
Reputation: 7720
You have different tools:
Apktool
Android Multitool
Apk Viewer
ApkShellext
Upvotes: 0
Reputation: 23514
Yes. apktool is a great tool for this. To use apktool:
apktool d application.apk application-apk
After that, inspect application-apk/AndroidManifest.xml
file and look at the <manifest>
root element at the top.
Upvotes: 2