-
Notifications
You must be signed in to change notification settings - Fork 24.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RN.Linking.openURL does not pre-populate SMS message body #25952
Comments
Been working on this same issue... seems to not pre-populate via Google Messenger. It only worked when I specified the phone number. |
It looks like you are using an older version of React Native. Please update to the latest release, v0.60 and verify if the issue still exists. The "Resolution: Old Version" label will be removed automatically once you edit your original post with the results of running `react-native info` on a project using the latest release.
|
Don't listen the bot, update to v 0.60 is not that trivial if you use custom libraries. But from this version you can use sendIntent directly from Linking library, and this should work as expected: https://facebook.github.io/react-native/docs/linking#sendintent (not tested). For iOS keep sms link:
|
Still happening in RN v0.60.4 |
Use sendIntent for android with https://developer.android.com/guide/components/intents-common#SendMessage |
Hi @pawlowskim, Could you help me here?. |
Try this (not tested)
You can also try without "ACTION" prefix, idk what is the implementation of it under the hood. Guys could provide at least one example for usage and it would be clear. |
you can use Some Android devices works with |
try this : sms://${number}/${Platform.OS === 'ios' ? '&' : '?'}body=${encodeURIComponent(body)} p/s: may be work in API 26 -> 29 |
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as a "Discussion" or add it to the "Backlog" and I will leave it open. Thank you for your contributions. |
Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please feel free to create a new issue with up-to-date information. |
This is re-opened bug from #23992. The same behaviour, but on Motorola g(6) play, android 9. It works or second test device with android 8 (honor).
React Native version:
Steps To Reproduce
sms:${phone}?sms_body=${body}
);Describe what you expected to happen:
It should pre populate SMS body content.
Investigation:
Quick look for Linking library and I saw it uses "ACTION_VIEW" intent for each intent. It might be the case, since android doc says it should be one of: ACTION_SENDTO, ACTION_SEND or ACTION_SEND_MULTIPLE. Manually triggered intent from adb with ACTION_SENDTO works as expected. Maybe it was different for older android version and that why it sometimes works and sometimes doesn't.
The text was updated successfully, but these errors were encountered: