Example #1
0
        //Data Protection
        void ApplyDataProtectionapability(DataProtectionapability capability)
        {
            //update pbxproject
            _pbxproj.EnableSystemCapability("com.apple.DataProtection", true);
            //update entitlements file
            var entitlementChanges = new PListDictionary();

            entitlementChanges.Add("com.apple.developer.default-data-protection", "NSFileProtectionComplete");
            ApplyEntitlementsChanges(entitlementChanges, true);
        }
Example #2
0
 public DataProtectionapability(DataProtectionapability other)
     : base(other)
 {
 }