Charles Yeung
Charles Yeung

Reputation: 38805

Android - Check the package of an app

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

Answers (2)

skan
skan

Reputation: 7720

You have different tools:

Apktool

Android Multitool

Apk Viewer

ApkShellext

Upvotes: 0

Steve Prentice
Steve Prentice

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

Related Questions