Group group container for the systemgroup.com.apple.configurationprofiles path

When I run my application on ios 10 using xcode 8, I get the message below in the debug console, but everything works fine. My application uses a camera and photo library, and I added " Privacy - Description of the use of the camera " and " Privacy - Description of the use of the photo library " in info.plist. Can someone tell me why this message is being sent

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

+58
ios iphone ios10 xcode8
Sep 20 '16 at 7:49
source share
2 answers

If everything works fine, you should ignore these log messages. Recently, iOS has been printing a lot of irrelevant debugging messages, and I'm sure this is just one of them.

You can also try this answer from another question that seems to remove most irrelevant magazines.

+6
Nov 15 '16 at 2:22
source share

From iOS 10.x, we need to add privacy rights for the photo library, camera, and contacts. As you said, adding keys such as

"Privacy - Description of Photo Library"

then you can use these internal applications inside your application.

In my case, the application crashes when I use Camera and Photo lib inside my application without these entries in Info.plist.

+4
Nov 28 '16 at 11:15
source share



All Articles