MarschOSX / Responder

Senior Design I project for an Android auto-response application
0 stars 0 forks source link

Determine SMS Manager Implementation #18

Closed gabowser closed 8 years ago

gabowser commented 8 years ago

Need to learn how to implement and use the SMS manager within the application.

Questions needing answering:

gabowser commented 8 years ago

http://developer.android.com/reference/android/telephony/SmsManager.html#getSubscriptionId()

gabowser commented 8 years ago

from: http://stackoverflow.com/questions/10101024/any-sms-api-is-available-for-android-to-send-sms-from-android-application

Sending SMS Message:

SmsManager sms = SmsManager.getDefault(); sms.sendTextMessage(NUMBER, null, MESSAGE, null, null);