Search code examples
androidmobilemobile-application

SMS usage with the mobile app


Is it possible and relevan for me to do this process?

  • User A: Use smartphone
  • User B: Use the old type of phone (ex nokia 103, samsung GT-E1200T)

    1. User A request a booking through mobile app
    2. Then, SMS is delivered to every user B
    3. User B reply through SMS
    4. Available users B will be listed in the mobile app used by the user A. If User B reject the request, the non-available users B will not be listed in the mobile app used by the user A
    5. Users A can choose any one of the available users B
    6. SMS will be delivered to user B that has been chosen

Is it possible to interact both mobile app and the usage of SMS?


Solution

  • Yes this is possible. I created an app some how similar to that. You will need to have:

    1) sqlite database to store your lists. Check this example

    2) Send SMS: check this example

    3) SMS Broadcast Receiver. check this example: Incomming SMS Broadcast Receiver

    check them and let me know if you still need help.