jamesmontemagno / SettingsPlugin

Read and Write Settings Plugin for Xamarin and Windows
MIT License
324 stars 80 forks source link

does the settingsPlugin support for EMM providers ? #159

Closed chathumdavton closed 4 years ago

chathumdavton commented 4 years ago

As per my knowledge most EMM providers support the appconfig standard and in order for the xamarin apps to receive configuration from a EMM provider we need to communicate with the platforms separately. ios NSUserDefaults.StandardUserDefaults.DictionaryForKey("com.apple.configuration.managed") android register a receiver for the "ActionApplicationRestrictionsChanged" broadcast actions and then read and apply restrictions using RestrictionsManager.ApplicationRestrictions

Is this functionality supported by the settingsPlugin ? If not what is the best way for me to use the settingsplugin and achieve the above functionality ?

jamesmontemagno commented 4 years ago

We don't support Dictionary on iOS, however do support group names.

For Android there is no support for the RestrcitionManager at all.

This is super easy code to write and manage so I would just do that yourself.