I am using EAS Build development IOS (not simulator) and when making a purchase and filling out apple ID sign in info, I get the following error:
[Error: There was a problem with the App Store.]
I have filled out all forms, agreements, tax info, and bank info on Apple Store Connect.
I am wondering why this error is happening. Here is my code to make the purchase:
const handlePurchase = async (num) => {
try {
const { customerInfo } = await Purchases.purchaseStoreProduct(product);
console.log(customerInfo);
} catch (e) {
if (!e.userCancelled) {
console.log(e);
} else {
Alert.alert("Cancelled", "Purchase has been cancelled.");
}
}
};