Last active
September 19, 2022 07:11
-
-
Save alexalouit/b9092e6a3b607df2f451fbfeb4b72f5a to your computer and use it in GitHub Desktop.
Send SMS over Android with ADB on MacOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ brew install --cask android-platform-tools | |
$ adb devices | |
List of devices attached | |
01e18783cc7f4cd8 unauthorized | |
# authorized computer on device | |
$ adb devices | |
01e18783cc7f4cd8 device | |
$ adb shell service call isms 7 i32 0 s16 "null" s16 "+33600000000" s16 "null" s16 "'Hello World!'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment