I want to test my apk (package name : com.edutor.ignitor) with monkey. So i typed the following command
adb shell monkey -p com.edutor.ignitor -v 200
getting error as follows
:Monkey: seed=1403140033385 count=200
:AllowPackage: com.edutor.ignitor
:IncludeCategory: android.intent.category.LAUNCHER
:IncludeCategory: android.intent.category.MONKEY
** No activities found to run, monkey aborted.
Next i typed the following command
adb shell monkey -p com.edutor.ignitor -c android.intent.category.LAUNCHER -c android.intent.category.MONKEY -vvv 100
getting error as follows
:Monkey: seed=1403155767105 count=100
:AllowPackage: com.edutor.ignitor
:IncludeCategory: android.intent.category.LAUNCHER
:IncludeCategory: android.intent.category.MONKEY
** No activities found to run, monkey aborted.
Any suggestions ..?