wwayne / react-native-user-defaults

All you need is set and get

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Get fail for key: com.apple.configuration.managed

montehansen opened this issue · comments

commented

I am using a well-known managed app configuration key (com.apple.configuration.managed) for an Enterprise Application. I have verified that my MDM has pushed down the user defaults to the device.

Any ideas/thoughts?

Thanks,

Monte

  var callback = function ( something )
  {
     // results in: Get fail for key: com.apple.configuration.managed
     console.log("Callback: " + something);
  };

  userDefaults.get( "com.apple.configuration.managed", null /*"Environment"*/, callback )
  .then(data =>
  {
    console.log("SUCCESS: " + data);
  });

react-native-cli: 1.2.0
react-native: 0.38.0

commented

Get fail for key: com.apple.configuration.managed is there error reported by the userDefaults class.

commented

For those with the same problem as me, I ended up switching to the react-native-userdefaults-ios project, which had no trouble reading from a managed app configuration key.

Hi @montehansen , I know this is long time ago, but do you mind to share with me how did you read the mdm config using react-native-userdefaults-ios, I tried and it is returning null for me, also, how did you verify that the key has been pushed to user defaults in the device, is that possible all see all the user defaults using react-native? thanks