8000 GitHub - jsroest/flutter-managed-configuration
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jsroest/flutter-managed-configuration

 
 

Repository files navigation

managed_configurations

Plugin to support managed app configuration provided by a Mobile device management (MDM)

Allows to read out Managed App Configuration. Provides a method and a stream which calls on managed app configuration changes.

Additional Information

https://developer.android.com/work/managed-configurations

Test on Android:

It could be that you need to factory reset your android device before installing TestDPC for testing.

How to use

To get managed app configuration call:

final managedAppConfig = await ManagedConfigurations.getManagedConfigurations;

To listen for managed app config changes subscribe to the stream:

ManagedConfigurations.mangedConfigurationsStream.listen((managedAppConfig){
    print(managedAppConfig);
});

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 27.3%
  • Dart 22.3%
  • Kotlin 21.6%
  • Swift 16.3%
  • Ruby 9.2%
  • Objective-C 3.3%
0