Deepak
Deepak

Reputation: 31

Need MDM to in iOS APP

I have one iOS app in Appstore. Now I want to implement the Mobile Device Management in it. As per the online documentations, I came to know that it needs Enterprise Developer Program for this and some sites are saying that It works only for the in-House apps. But I want the app to place in Appstore after implementing MDM. Please let me know the way how can I achieve this.

Upvotes: 2

Views: 504

Answers (1)

BinaryMee
BinaryMee

Reputation: 2142

What you are asking is pretty vague. You cannot implement MDM related features in App.

By default IOS 4 or later comes with MDM framework. You have to distribute configuration profile with MDM payload to device, inorder to configure it against an MDM server.Afterwards MDM server can send remote management commands, restrictions and policies.

As per the online documentations, I came to know that it needs Enterprise Developer Program for this and some sites are saying that It works only for the in-House apps.

  • The uses of Enterprise account are, Apple has mandated Enterprise Developer Program account to get to know about MDM protocol.
  • Using Enterprise account only you can download MDM CSR certificate which will be later used for signing CSR produced by user to get APNS certificate. MDM has nothing to do with Inhouse applications.


1.) Please have a look at Over the air profile delivery document by apple. It will give you plenty of information to transfer the Configuration profile Over the air.
2.) Explore MDM Protocol document provided by Apple and then look at wonderful document on MDM by Intrepidus Group, Inc.
3.) Read Configuration profile key reference document, to understand the properties used in configuration profile and Payload specific properties(Ex: Wifi Payload related properties)
4.) Then start constructing your own MDM server to handle MDM requests.!

But I want the app to place in Appstore after implementing MDM. Please let me know the way how can I achieve this.
May be in your app, you can give option to download configuration profile with MDM settings after authorization, if you doesn't want to send enrolment request for user through email or by any other means..

Upvotes: 2

Related Questions