Enforce Microsoft Intune Mobile Device Management (MDM) app protection policies and enterprise data encryption natively.
Enforce enterprise Mobile Device Management (MDM) security policies with Microsoft Intune. Nativine embeds native Intune App SDKs, allowing corporate IT departments to wrap your mobile application with enterprise data protection policies, PIN requirements, and remote wipe capabilities.
Microsoft Intune is the enterprise standard for Mobile Application Management (MAM) and Mobile Device Management (MDM). Nativine embeds the native Intune MAM SDK into your application binary:
To inspect Intune policy enforcement state or check corporate user enrollment in JavaScript, call nativine.intune.getPolicyState():
nativine.intune.getPolicyState({
callback: 'onIntunePolicyStatus'
});
function onIntunePolicyStatus(status) {
console.log("Is Intune Managed:", status.isManaged);
console.log("Is Screen Capture Allowed:", status.allowScreenCapture);
console.log("Enrolled User UPN:", status.userPrincipalName);
}
| Parameter | Type | Description |
|---|---|---|
callback | string | Required. Name of JS callback function receiving Intune status object. |
No. Intune App Protection (MAM-WE) protects your specific application without requiring full device MDM enrollment (BYOD friendly).
Yes. When copy/paste restriction is enabled in Azure Portal, copying text inside the webview to external apps is automatically blocked by Intune.