I am developing my app with React native plus Expo.
It provides an inapp subscription using RevenueCat.
The app works well on my local PC and I could successfully purchase subscription plans.
These are the commands I built the local version :
$ npx expo prebuild
$ npx expo run;android --device
$ npx expo start --dev-client
After the local test, I built a PRODUCTION profile of my app by the following command
$ eas build --platform android --profile production
Then I launched it on the close-test track of the Google Play console.
But the app does not work for paywall screen.
Actually, it displays the home screen, and it gets stuck when I click the purchase button which
is supposed to display packages, offerings, or whatever on the next next paywall screen.
Any idea about where can I see to address this issue?
Thank you in advance.