Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 655 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 655 Bytes

OneMDMInstaller

This library is a part of OneMDM project. It checks whether OneMDM is installed.

Integrating the Library with Existing Project

To integrate OneMDM Installer with an existing project:

  1. Add the library in the dependencies section:

    dependencies {
        ...
        compile 'com.multunus:onemdm-installer:0.1'
    }
  2. 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);
    }