microsoftconnect/ms-intune-app-sdk-android


Intune App SDK for Android enables data protection features and mobile app management via Microsoft Intune

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.msintuneappsdk:ms-intune-app-sdk-android:'
	}
	dependencies {
		implementation("com.github.msintuneappsdk:ms-intune-app-sdk-android:")
	}
	<dependency>
	    <groupId>com.github.msintuneappsdk</groupId>
	    <artifactId>ms-intune-app-sdk-android</artifactId>
	    <version></version>
	</dependency>

                            
    libraryDependencies += "com.github.msintuneappsdk" % "ms-intune-app-sdk-android" % ""
        
        

                            
    :dependencies [[com.github.msintuneappsdk/ms-intune-app-sdk-android ""]]
        
        

Readme


Microsoft Intune App SDK for Android

Version 11.0.0

See release notes for more information. GitHub users can receive email notifications for new releases to this repo by clicking on Releases only from the "Watch" drop-down menu in the upper right-hand corner.

The Microsoft Intune App SDK for Android enables data protection features and mobile app management via Microsoft Intune.

Prerequisites

Before you install and use Microsoft Intune App SDK for Android you must:

Integrating the Microsoft Intune App SDK for Android

Please refer to the Intune App SDK for Android Developer Guide on how to integrate the SDK into your Android app.

Releases for the Microsoft Intune App SDK for Android

The Microsoft Intune App SDK for Android releases are less frequent than for the Microsoft Intune App SDK for iOS offering because a larger percentage of the new functionality is enabled through the Company Portal mobile application rather than the SDK integration.

For more information on the Company Portal app requirements for data protection features and mobile app management on Android, see Requirements - Company Portal app.

Microsoft Intune App SDK for Android Sample Apps

See Taskr-Sample-Intune-Android-App for a sample application that integrates the Intune App SDK for Android and ms-intune-app-sdk-android-samples for a sample MAUI application that integrates the Microsoft.Intune.Maui.Essentials.android NuGet package.