0

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 ..?

user3297196
  • 47
  • 2
  • 11

1 Answers1

0

Instead of entering the seed value, monkey has no executable event, plus the seed value, which is set to 20, such as:

adb shell monkey -p om.edutor. Ignitor-s 20-v-v-v 200
General Failure
  • 2,421
  • 4
  • 23
  • 49
liuse
  • 1