I need to get the package name of an android apk. I have tried to unzip the apk and check the AndroidManifest.xml, but seems it's not a text file. Is there tool I can use? Thanks!
You can install the apk on your phone, then
This taken from Find package name for Android apps to use Intent to launch Market app from web | |||
|
If you just want to know package name, run adb logcat, launch the activity you want , you will get a hint on the package name. | |||
|