Skip to content
This repository has been archived by the owner on Jan 13, 2021. It is now read-only.

tatparya/WalmartBot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

Walmart Challenge Android Bot

Challenge :

Given a product description / name, reply to the text with product price guess within 15% error to receive 1 point.

Implementation :

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.

Sending messages from an within an app :

    SmsManager sm = SmsManager.getDefault();
    String number = "<Phone Number>";
    String msg = "<Message Text>";
    sm.sendTextMessage(number, null, msg, null, null);

About

Walmart Challenge Android Bot

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages