Example #1
0
        //Push Notifications
        void ApplyPushNotificationsCapability(PushNotificationsCapability capability)
        {
            //update pbxproject
            _pbxproj.EnableSystemCapability("com.apple.Push", true);
            //update entitlements file
            var entitlementChanges = new PListDictionary();

            entitlementChanges.Add("aps-environment", "development");
            ApplyEntitlementsChanges(entitlementChanges, true);
        }
 public PushNotificationsCapability(PushNotificationsCapability other)
     : base(other)
 {
 }