'How to integrate Microsoft intune SDK in a flutter application?
We are trying to integrate Microsoft Intune SDK in the flutter application.
The first blocker which looks interesting is Intune requires every activity to extend from MAMActivity. And on the other hand, Flutter requires that android Activity should extend from FlutterActivity.
So how to overcome this issue?
Solution 1:[1]
In my project I integrated Intune SDK and MSAL SDK in Flutter. You have to develop a flutter plugin to implement those native SDKs using platform channels... It's not easy, but is the way.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Arnau Alloza |
