0

I have a Bluetooth device which can receive a data from the android phone. When it receive a string as 'Request', the device will send a control message to the phone 'Open'. Based on the control message, the android phone can call an Intent service as open a calling. Due to security, I am not sure is it possible in android version 5.0 to 6.0? Can you give me some suggestion?

Jame
  • 3,746
  • 6
  • 52
  • 101

1 Answers1

1

Yes, It is possible inside your app to handle messages received from other devices.

Nilay Dani
  • 896
  • 6
  • 24
  • Thank you for your reply. Do you think my application can run as service? – Jame Aug 09 '16 at 11:45
  • Thanks, Do you see any app look like it? Could you suggest to me how can I do it? Because I am worried that the security may be one issue to prevent the control – Jame Aug 09 '16 at 11:53
  • You can find many beacon apps which uses these kind of features. I don't think it may generate any security issue . – Nilay Dani Aug 10 '16 at 04:58