i am using react-native(0.61.5)I created my auto-renewable packages via appstoreconnect. I want to subscribe to these packages that I have created using the react-native-iap package. but i am getting the errors in the image below.
note: OR i am getting empty products obj
my codes
export const IAP_SKUS = Platform.select({ ios: ['1' // my product id on applestoreconnect subscriptions ],});getProducts = async () => { try { const products: RNIap.Product[] = await RNIap.getProducts(IAP_SKUS); console.log(products); } catch (err) { console.log(err); }}
Where do I make mistakes, I can not perform the subscription even though I use the package as it is. Can you help me with this? or does it have a good documentation?