This library is a part of OneMDM project. It checks whether OneMDM is installed.
To integrate OneMDM Installer with an existing project:
-
Add the library in the dependencies section:
dependencies { ... compile 'com.multunus:onemdm-installer:0.1' }
-
In the application’s main activity
onCreate
method, start the onemdm-installer service as follows:public void onCreate() { ... Intent intent = new Intent(this, OneMDMInstallerService.class); startService(intent); }