android - Send multiple URIs with adb am -
i'm trying simulate activity being started intent android.intent.action.send_multiple
. need pass in "android.intent.extra.stream" array of uris (strings). i'm trying start shell using am
command. however, appears can't specify uri/string list using am
. array type extras see ints, longs, , floats.
is there different way simulate sending multiple uris shell?
this known limitation of android command line tools - basic data types supported parameters. unfortunate because easy add command line support existing xml serialization used internally.
Comments
Post a Comment