I'm working on an application that will be sending a text message to another person from the app (this is not being published to the Play Store). I am looking at the documentation for SmsManager, and there is a parameter (which I currently have null), scAddress
, which is described by:
String: is the service center address or null to use the current default SMSC
In short, I don't want the app to use my actual phone number to send out this text message. What exactly is the "service center address?"
My application does not care about receiving a response for the text message. What happens if the user replies to this message? Is this related to the service center address?
Thank you!