xcode6 - What are all the valid SystemCapabilities keys possible usually generated by Xcode? -


i not use xcode build ipa. tried searching apple documentation, cannot find key values possible system capabilities. in order not lazy, tried archive project these capabilities turned on, , searched through ipa, cannot find xcode6 hiding these entitlements.

for users using xcode6 these capabilities listed here

enter image description here

since generate ipa manually, need know these keys in order match capabilities set on app identifier.

updated

here key values, in project.pbxproj file, @colinta

systemcapabilities = {   com.apple.applicationgroups.ios = {     enabled = 1;   };   com.apple.backgroundmodes = {     enabled = 1;   };   com.apple.dataprotection = {     enabled = 1;   };   com.apple.gamecenter = {     enabled = 1;   };   com.apple.healthkit = {     enabled = 1;   };   com.apple.homekit = {     enabled = 1;   };   com.apple.inapppurchase = {     enabled = 1;   };   com.apple.interappaudio = {     enabled = 1;   };   com.apple.keychain = {     enabled = 1;   };   com.apple.maps.ios = {     enabled = 1;   };   com.apple.omc = {     enabled = 1;   };   com.apple.passbook = {     enabled = 1;   };   com.apple.safarikeychain = {     enabled = 1;   };   com.apple.vpnlite = {     enabled = 1;   };   com.apple.wac = {     enabled = 1;   };   com.apple.icloud = {     enabled = 1;   }; }; 

your screenshot gave me idea - check diff of project.pbxproj file! came this:

+ systemcapabilities = { +   com.apple.gamecenter = { +     enabled = 1; +   }; +   com.apple.inapppurchase = { +     enabled = 1; +   }; + }; 

hth


Comments

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

android - Associate same looper with different threads -

visual studio 2010 - Connect to informix database windows form application -