ADB start intent sms android that lists all available SMS -
i tried find way start sms intent in android (samsung) adb :
adb shell start -n com.android.mms/.ui.conversationcomposer
i managed find package name "com.android.mms" , intent ".ui.conversationcomposer".
however start directly new compose message intent, while tried start view smss (it shall lists sms in android phone). when trace down "adb dumpsys window windows", sms listing still uses above intent (ui.conversationcomposer).
a workaround launching sms composer , running twice
adb shell input keyevent keycode_back
how can view without having launch composer view , pressing twice adb?
i found work around solution link:
adb shell monkey -p your.app.package.name -c android.intent.category.launcher 1
Comments
Post a Comment