WalmartBot ![Walmart Logo] (https://upload.wikimedia.org/wikipedia/commons/thumb/7/76/New_Walmart_Logo.svg/901px-New_Walmart_Logo.svg.png)
Given a product description / name, reply to the text with product price guess within 15% error to receive 1 point.
Implemented Broadcast Receivers to listen for SMS notifications, parse messages and extract product description. Querying the Walmart API using the product description and parsing the JSON object received for product price.
SmsManager sm = SmsManager.getDefault();
String number = "<Phone Number>";
String msg = "<Message Text>";
sm.sendTextMessage(number, null, msg, null, null);