We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apple does not allow distribution to the App Store in China with CallKit features enabled.
There's a solution discussed here, using NSLocale to check the user's region and conditionally initialize Callkit: https://stackoverflow.com/questions/51016603/disabling-callkit-from-china-store-best-approach
The CallKeep equivalent I'm using:
NSString *currentRegion = [[NSLocale currentLocale] objectForKey:NSLocaleCountryCode]; if (![currentRegion isEqualToString:@"CN"]) { // Disable CallKit in China [RNVoipPushNotificationManager voipRegistration]; [RNCallKeep setup:@{ @"appName": @"Call App", @"maximumCallGroups": @1, @"maximumCallsPerCallGroup": @1, @"supportsVideo": @YES, }]; }
However, Apple continues to reject my app, leading me to believe CallKeep continues to use CallKit features internally without setup.
How would I go by disabling CallKit completely? Could the locale check by any chance be implemented in CallKeep?
The text was updated successfully, but these errors were encountered:
just disable distribution in China from app store
Sorry, something went wrong.
No branches or pull requests
Apple does not allow distribution to the App Store in China with CallKit features enabled.
There's a solution discussed here, using NSLocale to check the user's region and conditionally initialize Callkit: https://stackoverflow.com/questions/51016603/disabling-callkit-from-china-store-best-approach
The CallKeep equivalent I'm using:
However, Apple continues to reject my app, leading me to believe CallKeep continues to use CallKit features internally without setup.
How would I go by disabling CallKit completely? Could the locale check by any chance be implemented in CallKeep?
The text was updated successfully, but these errors were encountered: