Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Jordan Peterson
5,134 PointsHow to add SMS and MMS to Ribbit app?
I want to make the Ribbit app more like a texting app. How can I add SMS and MMS in this application?
Jordan Peterson
5,134 PointsHi Steve,
I wanted to make an app similar to the app textPlus. I want to have a user have an option to message each other through their account on my app or through a users phone number. I haven't decided yet if I want the message to time out and vanish yet.
Jordan.
Steve Hunter
57,712 PointsI had a quick look around. It seems the Android documentation isn't great - it covers the classes but there's no walk-through of the API.
However, this on StackOverflow seems to cover a lot of the things you'll need to implement.
Steve.
Steve Hunter
57,712 PointsSteve Hunter
57,712 PointsThe Android Telephony API has an SMSManager and an MMSManager.
What sort of thing are you thinking of implementing here? Rather than using Parse.com to exchange data between users, have a user's phone number as a property of each user (in Parse) with the option to use that to send the SMS/MMS? Do you want to maintain the ability to have the message 'time-out' and vanish?
It's an interesting idea ... I'e never tried using SMS/MMS programatically.