I can’t fetch data from StoreKit testing framwork for test in app purchase on myapp
below this error message
flutter: fetchOffers error PlatformException(23, There's a problem with your configuration. None of the products registered in the RevenueCat dashboard could be fetched from App Store Connect (or the StoreKit Configuration file if one is being used).
More information: https://rev.cat/why-are-offerings-empty, {readable_error_code: CONFIGURATION_ERROR, readableErrorCode: CONFIGURATION_ERROR, code: 23, message: There's a problem with your configuration. None of the products registered in the RevenueCat dashboard could be fetched from App Store Connect (or the StoreKit Configuration file if one is being used).
More information: https://rev.cat/why-are-offerings-empty, underlyingErrorMessage: }, null)
This is my step
1.I create StoreKit Configuration file on Xcode
2.Create subscription
3.I config schema import StoreKit Configuration
4.I export cerification and import to revenuecat panel
5.then i comback to my code
i config by
await Purchases.configure(await PurchasesConfiguration(key),);
Then i has a test button call data
final offerings = await Purchases.getOfferings();
after i got error message below
flutter: fetchOffers error PlatformException(23, There's a problem with your configuration. None of the products registered in the RevenueCat dashboard could be fetched from App Store Connect (or the StoreKit Configuration file if one is being used).
More information: https://rev.cat/why-are-offerings-empty, {readable_error_code: CONFIGURATION_ERROR, readableErrorCode: CONFIGURATION_ERROR, code: 23, message: There's a problem with your configuration. None of the products registered in the RevenueCat dashboard could be fetched from App Store Connect (or the StoreKit Configuration file if one is being used).
More information: https://rev.cat/why-are-offerings-empty, underlyingErrorMessage: }, null)
Plese help me
I want to fetch data from StoreKit testing framwork i spent time 3 days
thanks