You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When my message is sent, SentReceiver() is called. And I can get the message_uri from there as:
val uri = Uri.parse(intent?.getStringExtra("message_uri"))
Now lets assume that the user has sent several messages with same text and to a same address. Though every message has a different ID (which can be accessed by querying the uri after the message is sent) but I think it is not possible to determine those IDs at the time of sending a message in order to match them later. How can I distinguish which message is being sent?
The text was updated successfully, but these errors were encountered:
When my message is sent,
SentReceiver()
is called. And I can get the message_uri from there as:val uri = Uri.parse(intent?.getStringExtra("message_uri"))
Now lets assume that the user has sent several messages with same text and to a same address. Though every message has a different ID (which can be accessed by querying the uri after the message is sent) but I think it is not possible to determine those IDs at the time of sending a message in order to match them later. How can I distinguish which message is being sent?
The text was updated successfully, but these errors were encountered: