I'm trying to pass a Parcelable object in my extras when starting an activity in Monkeyrunner. The area in the script looks like this

user = FbUser() 
extraDic = {} 
extraDic['userName'] = 'Test' 
extraDic['userId'] = 'me' 
extraDic['userInfo'] = user 
d.startActivity(extras=extraDic, component=runComponent + postActivity) 

FbUser is the object in my java project that implements Parcelable. The bin of the project has been properly added to the sys.path in the Jython Monkeyrunner script. When I debug the script, it creates the FbUser object correctly, however, when I print out the extras in LogCat, the 'userInfo' extra is missing... This appears to be because the class JythonUtils will only translate PyString, PyFloat and PyInteger to String, Double and Integer even though the documentation for MonkeyDevice states you can pass any structured data type in the extras dictionary. Has anyone found a way to do this?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.