0

Is there a way to realize the following scenario?

App X on Device A (with Android) forces App Y on Device B (with Android) to open itself. The communication could happen in wifi or bluetooth or other kind of protocol.

Obviously, after a enrollment/binding phase between the two devices.

Thanks for your attention!

Kuffs
  • 35,581
  • 10
  • 79
  • 92
gx.
  • 129
  • 5

2 Answers2

1

yes.

Make the connection between devices (however you want to do it)

Tell app X to open app Y.

Device B receives the command and starts the intent to open the requested app.

Open another application from your own (intent)

Community
  • 1
  • 1
Kuffs
  • 35,581
  • 10
  • 79
  • 92
1

There are two ways:

1- Using a background service on the device B, and using GCM send a message to the second device, than processing the request to open the app.

2- Using BT if you're using the two devices close from each other.

Artur D
  • 26
  • 2