I have a setup with an android device managed by the MDM Soti / MobiControl.
I want to use a script to roll out an app update.
This are the steps:
MDM calls App with
sendintent -b "intent:#Intent;action=com.myapp.syncdata;end“
App does a sync with the Webservice
- App notifies MDM that it finished syncing
- MDM uninstalls the old App
- MDM installs the new App
With the soti script command in #1 and a BroadcastReceiver in my Android App I can already trigger sync events.
But I wonder how can I inform the MDM that the synchronisation is finished?
How can I do step 3?