8

Just upgraded to XCode 8 and my device to iOS 10, then I get this message the first time I enter any textField.

[MC] System group container for systemgroup.com.apple.configurationprofiles path is /private/var/containers/Shared/SystemGroup/systemgroup.com.apple.configurationprofiles

[MC] Reading from public effective user settings errors.

My app is still functional, no problems, but I want to get rid of this warning before I submit it.

My app us written in Objective-C, if this makes a difference.

I know it's coming from the keyboard, because I've commented out all actions taken when entering the textField (and really it is any textField), and the error still occurs.

Is there a fix? And if not, would it be okay to submit it with this warning?

ARENV
  • 93
  • 1
  • 3
  • Try [Hide strange unwanted Xcode 8 logs](http://stackoverflow.com/q/37800790) – jscs Oct 11 '16 at 17:07
  • yeah, i know about that ability, if you're referring to OS_ACTIVITY_MODE and it does prevent the warning from showing, but I'm worried that my app will be rejected with this warning. – ARENV Oct 11 '16 at 17:16
  • Those aren't warnings, they are simple debug messages shown by iOS 10. – rmaddy Oct 13 '16 at 14:52
  • 1
    @maddy: what's the use of this messages?I am also getting above message. – bittu Oct 18 '16 at 12:27
  • As mentioned [here](http://stackoverflow.com/a/40458288), this is probably only log debug message that doesn't affect release version of the app – Andrius Shiaulis Jan 20 '17 at 07:33
  • I see the same error when notifications are not being passed by a navigation controller into a pushed view: https://forums.developer.apple.com/thread/65216. Will wait for a solution to post a possible answer. – Efren May 16 '17 at 05:57

1 Answers1

8

1- From Xcode menu open: Product > Scheme > Edit Scheme

2- On your Environment Variables set OS_ACTIVITY_MODE in the value set disable

Radu Ursache
  • 1,230
  • 1
  • 22
  • 35