I have 0 experience in Android, so this basic question.
I am not a programmer, so i want something like shell commands than code.
In my phone i have set of applications installed. I can know how to find list of packages of the application by
adb shell pm list packages
From the list of packages that displayed with above command, Once i know my package name(say xyz package) what shell command i have to use to list all the activities under that package(xyz package).
Is there a way to know activity names from the apk file? I can get the apk file name from the package my using
adb shell pm list packages -f "my package name"
So can you please let me know the shell command to list of activity names from the apk file.