if u try to use it with an app that uses pushkit, it doesnt work.
- (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings
fires perfectly fine
but
- (void)pushRegistry:(PKPushRegistry *)registry didUpdatePushCredentials:(PKPushCredentials *)pushCredentials forType:(PKPushType)type
does not for example
simply uninstalling the tweak doesnt immediately fix it either, u have to do a full system restart after removing the tweak for it to fix. given this fact, I presume for to reproduce the bug u also have to do a full system restart after installing the tweak as well. maybe a system thing is being hooked into that's breaking pushkit support
this is really troublesome not just for calling, but texting as well. cus a lot of apps back in the days of iOS 9 and earlier, relied on pushkit to send and receive messages, because then it could avoid sending the message content thru apples apns servers, and therefore they wouldn't be able to read ur msgs. starting with iOS 13 sdk, pushkit rules have changed, disallowing its use for anything other then calling, but with iOS 12 and earlier iOS sdk, u could, and that's why so many iOS 9 and earlier apps relied on it cus it was useful for privacy. without working pushkit, such as is the case with this tweak rn, notifications don't work in those apps at all
if u try to use it with an app that uses pushkit, it doesnt work.
- (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettingsfires perfectly fine
but
- (void)pushRegistry:(PKPushRegistry *)registry didUpdatePushCredentials:(PKPushCredentials *)pushCredentials forType:(PKPushType)typedoes not for example
simply uninstalling the tweak doesnt immediately fix it either, u have to do a full system restart after removing the tweak for it to fix. given this fact, I presume for to reproduce the bug u also have to do a full system restart after installing the tweak as well. maybe a system thing is being hooked into that's breaking pushkit support
this is really troublesome not just for calling, but texting as well. cus a lot of apps back in the days of iOS 9 and earlier, relied on pushkit to send and receive messages, because then it could avoid sending the message content thru apples apns servers, and therefore they wouldn't be able to read ur msgs. starting with iOS 13 sdk, pushkit rules have changed, disallowing its use for anything other then calling, but with iOS 12 and earlier iOS sdk, u could, and that's why so many iOS 9 and earlier apps relied on it cus it was useful for privacy. without working pushkit, such as is the case with this tweak rn, notifications don't work in those apps at all