I am trying to test my app using the MonkeyRunner tool. I am trying to add an EXTRA to my activity. The python script executes without error:

device = MonkeyRunner.waitForConnection()
device.wake()
extra = {'MY_EXTRA', True}
device.startActivity(component="org.mycompany.myapp/.activity.Show",extras=extra)

But when I inspect the intent in my app I do not get the value passed:

boolean myExtra = i.getBooleanExtra("MY_EXTRA", false);

What am I missing? Am I passing in the intent wrong? Am I inspecting the value in the Android app wrong?

link|improve this question

feedback

1 Answer

This is a bug in MonkeyRunner. It is not correctly handling passing Booleans into extras. If you pass a string instead, it should work.

https://review.source.android.com/#change,21636 fixes this issue.

link|improve this answer
I can't seem to get it to take any extra, string, boolean, nothing...hmm – brendan Mar 21 '11 at 16:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.