mercredi 18 décembre 2019

How to send a SMS with ADB SHELL

I have just read the following topic on Stackoverflow (click to view it) and I have made a test on my Samsung J6+ mobile phone and it works perfectly.

Here is the way to send a SMS through ADB SHELL (Android Debug Brigde) :
adb shell service call isms 7 i32 0 s16 "com.android.mms.service" s16 "+33122334455" s16 "null" s16 "Hey\ you\ !" s16 "null" s16 "null"
Wouldn't that be a good idea do have an PC application that uses this feature to send mass sms ?