It is not clear to me whether we need to request push notification permissions in the provisioning profile, if we are only sending local notifications. I received the warning email when doing a test upload to ITunes and do not want to waste time when we submit.
I have calls for IOS8+
static const UIUserNotificationType USER_NOTIFICATION_TYPES_REQUIRED = UIUserNotificationTypeAlert | UIUserNotificationTypeSound | UIUserNotificationTypeBadge;
UIUserNotificationSettings* requestedSettings = [UIUserNotificationSettings settingsForTypes:USER_NOTIFICATION_TYPES_REQUIRED categories:nil];
[[UIApplication sharedApplication] registerUserNotificationSettings:requestedSettings];
and
[application scheduleLocalNotification:notification];
But no push notification. Do I need to include push in the IOS-APP ID Settings