feat(android): add SMS sending capability to Android node#172
Merged
steipete merged 1 commit intoopenclaw:mainfrom Jan 4, 2026
Merged
feat(android): add SMS sending capability to Android node#172steipete merged 1 commit intoopenclaw:mainfrom
steipete merged 1 commit intoopenclaw:mainfrom
Conversation
Add sms.send command to allow sending text messages via the paired Android device. Changes: - Add SmsManager class to handle SMS sending via Android SmsManager API - Add ClawdisSmsCommand enum and Sms capability to protocol constants - Wire sms.send command into NodeRuntime invoke handler - Add SEND_SMS permission to AndroidManifest.xml - Advertise sms capability when SEND_SMS permission is granted The SMS capability is only advertised when the user has granted SEND_SMS permission. Messages longer than 160 chars are automatically split into multipart messages.
b81a899 to
f5abc8e
Compare
Contributor
|
Oh I love this! Thanks! |
Syhids
reviewed
Jan 4, 2026
Comment on lines
-391
to
+395
| if (locationMode.value != LocationMode.Off) { | ||
| add(ClawdisLocationCommand.Get.rawValue) | ||
| if (sms.hasSmsPermission()) { | ||
| add(ClawdisSmsCommand.Send.rawValue) |
Contributor
There was a problem hiding this comment.
This change doesn't seem to be intended
dgarson
referenced
this pull request
in dgarson/clawdbot
Feb 7, 2026
slathrop
referenced
this pull request
in slathrop/openclaw-js
Feb 11, 2026
Tasks completed: 1/1 - Task 1: Port DM allowFrom fix + regression tests (commits #172, #173, #174) SUMMARY: .planning/phases/14-telegram-channels/14-07-SUMMARY.md
songliu0403-rgb
pushed a commit
to songliu0403-rgb/openclaw
that referenced
this pull request
Feb 26, 2026
github-actions Bot
pushed a commit
to Piboonsak/openclaw_github
that referenced
this pull request
Mar 17, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add sms.send command to allow sending text messages via the paired Android device.
Changes:
The SMS capability is only advertised when the user has granted SEND_SMS permission. Messages longer than 160 chars are automatically split into multipart messages.