1a) use aapt (Android Asset Packaging Tool)
aapt dump badging <apk-path>
- or -1b) use apktool to retrieve AndroidMainifest.xml from the apk
apktool d <apk-path>
Once you know the package name and activity name, you can launch it by running:
adb shell am start -a android.intent.action.MAIN -n <package-name>/<activity-name>
No comments:
Post a Comment