Hello, I'm currently trying to set up my app with Rev Cat and set up the subscription. I'm currently not able to see the subscription when I move over to the official API key from the official app store.
I attached screenshots, and the code that I'm using. In the screenshot, it's showing that developer action is needed because I submitted it, and it didn't show correctly. Which is why when I got my developer's profile to the project, on the comments it said it's fine, and that it still should be visible.
// expo-app/components/Paywall.tsx
{loading ? (
// ... loading spinner ...
) : !currentOffering || currentOffering.length === 0 ? (
// This is what you see if RevenueCat returns nothing
<View style={{ padding: 20, alignItems: 'center' }}>
<Text style={styles.loadingText}>No subscriptions available.</Text>
<TouchableOpacity onPress={onClose} style={{ marginTop: 10 }}>
<Text style={{ color: colors.primary }}>Close</Text>
</TouchableOpacity>
</View>
) : (
// This loops through the packages and shows them
currentOffering.map((pack) => (
<TouchableOpacity key={pack.identifier} ... >
<Text style={styles.packageName}>{pack.product.title}</Text>
<Text style={styles.packagePrice}>{pack.product.priceString}</Text>
</TouchableOpacity>
))
)}
Just to be clear, when I use my test our API key and go on test the app, it shows as a product, but when I move over to the live API, then that's where the issue is arising.
