63

When i run my application in ios 10 using xcode 8 i am getting below message in debug console but everything is working fine. My application is using camera and photo library, and i had added " Privacy - Camera Usage Description " and "Privacy - Photo Library Usage Description"in info.plist. Can any one tell me why this message in comming

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

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Vaisakh
  • 2,919
  • 4
  • 26
  • 44

2 Answers2

11

If everything is working fine, then you should disregard these log messages. iOS has been printing a lot of irrelevant debug messages lately and I'm betting this is just another one of them.

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

Community
  • 1
  • 1
Bruno Philipe
  • 1,091
  • 11
  • 20
3

From iOS 10.x we need to add the Privacy Permissions for Photo library, Camera and Contacts. As you said, once you add the Keys like

"Privacy - Photo Library Usage Description"

then you will be able to use those internal apps inside your app.

In my case app was crashing when I use Camera and Photo lib inside my app without these entries in Info.plist.

DGoogly
  • 329
  • 2
  • 16
  • what are the additions to the info.plist file? – David Jan 21 '17 at 23:12
  • 1.Privacy - Camera Usage Description : Used to capture photo or scan barcode, 2.Privacy - Contacts Usage Description : Used to access device contacts, 3. Privacy - Photo Library Usage Description : Used to access Photo library – DGoogly Feb 09 '17 at 09:25
  • 1
    I had the same log message without having photos or camera access in my project. I believe that @Bruno Philipe answer should be the accepted answer. – Yassine ElBadaoui Jun 08 '17 at 09:59
  • 1
    I have this on a text field and keyboard doesn't open – devjme Mar 14 '18 at 17:40
  • 1
    I don't think this answer is correct. My iOS app does not use any external Photo, Camera, Contacts, or other library (that I know of), yet this message is being printed to the log file anyway, the first time the user clicks in a text editing field. I'm running on iOS 12.1, and developing on XCode 10.1. – jsbox Jan 19 '19 at 20:46