2

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?

Md. Yeasin Sheikh
  • 54,221
  • 7
  • 29
  • 56
Piyush
  • 163
  • 1
  • 10

1 Answers1

0

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.