I have an android connected to PC for testing purposes (test automation that involves sms receiving).
Is it possible to check if new message is available and get its text via adb?
At this moment I only can start the messages app with this command:
>adb shell monkey -p com.android.mms -c android.intent.category.LAUNCHER 1
I cannot find anything that help me to get the messages without recurring to DB or cellphone rooting. Is it possible?
Thanks.