Question

I am developing a MDM android application but not sure if I need to create a separate APK apps for each vendor like "My app for Samsung", "My app for LG", "My app for HTC" etc.

I found some of the apps on Google Play Store from SOTI, MaaS360, Airwatch

- https://play.google.com/store/apps/developer?id=SOTI+Inc
- https://play.google.com/store/apps/developer?id=MaaS360

We can see separate android application for each device vender. Say "MobiControl Agent", "MobiControl Samsung Agent", "MobiControl ZTE Agent", "MobiControl HTC Agent"

I would like to create a single MDM Android apps that can provide all features like basic mdm operation along with vendor specific features like Samsung SAFE, KONX etc.

So I want to know, is it possible or not? If yes then would like to know the reason behind creating different vendor specific apps in app store.

Was it helpful?

Solution

So I want to know, is it possible or not?

Yes. It's possible. You can put all of your functionality in one APK and you can check on which platform (manufacturer) you are running and execute manufacturer specific API's.

If yes then would like to know the reason behind creating different vendor specific apps in app store.

I am not sure about HTC app.

The reason why people created (before) standalone Samsung app was to the signing. The code which executed privedged API's should have been signed by Samsung. MDM companies didn't want to submit each minor version which they want to put on Google Play to Samsung to sign (it will easily consume a lot of timeframe).

So, MDM companies broke it down to two APK. One with very limited manufacturer specific API's, which changes rarely and signed rarely by Samsung. And another with the common code, which can be changed and signed by their own keys.

Samsung changed the way how you can use these API's. You don't have to send apps to them for approval. However, a lot of companies never went back to change it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top