Replies: 1 comment
-
|
This is a TestFlight/Apple Settings limitation, not related to the library. Key Points1. TestFlight uses Sandbox environmentTestFlight apps use the Sandbox environment, which has known limitations in Apple Settings:
2. Renewal Rate Difference
This is expected behavior. TestFlight sandbox has longer renewal periods than local Xcode testing. 3. App Icon Not ShowingThis is a known Apple issue with TestFlight/Sandbox subscriptions in Settings. The app icon often doesn't appear until the app is live in production. Workarounds
Managing Subscriptions In-AppYou can open the subscription management page directly: import { Linking, Platform } from 'react-native';
const openSubscriptionManagement = () => {
if (Platform.OS === 'ios') {
Linking.openURL('https://apps.apple.com/account/subscriptions');
}
};References |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I have deployed my app on Test Flight, I have two subscriptions, monthly and yearly. User can have one of them at a time and upgrade, downgrade to the other. Upgrade, downgrade, cancel from the Apple Settings worked fine in the sandbox environment when testing locally. Now when I have deployed the app on TestFlight, I was able to purchase the subscription successfully from my app. Now when I want to cancel my subscription from the Apple Settings it gives me the following error after confirming cancellation, 'Your request is temporarily unable to be processed. Please try again later.' Also the other subscription offer (yearly) is also not shown to which I could upgrade, even though in the sandbox I was able to upgrade downgrade from the settings. Another thing I have noticed is that the app Icon or name is not shown anywhere in settings with the subscription. Instead of app icon only empty square is shown. Even though app icon shows fine everywhere else. Another thing I have noticed is that the subscription renewal rate is 1 day, which is strange because in sandbox it should be 3 or 5 minutes.
Can someone please help me figure out this issue?
Beta Was this translation helpful? Give feedback.
All reactions