uSeRnAmEhAhAhAhAhA
uSeRnAmEhAhAhAhAhA

Reputation: 2587

Send/Receive SMS in Android apps (as default SMS app)

As of Android 4.3, how do we send and receive SMS (and less importantly, MMS) messages?

I know there are samples all over this site and the web. But I am wanting documentation for it, and everywhere I look on the Android site says "Deprecated since API Level 4". Is there anything SMS-related that isn't deprecated?

SMSManager is deprecated and so is SMSMessage and others.

Upvotes: 0

Views: 548

Answers (1)

user3110424
user3110424

Reputation:

From android documentation of SmsManager

Manages SMS operations such as sending data, text, and pdu SMS messages. Get this object by calling the static method getDefault().

For information about how to behave as the default SMS app on Android 4.4 (API level 19) and higher, see Telephony.

You should see Telephony for version 4.4

Upvotes: 1

Related Questions