Skip to main content
Question

Purchase not working on EAS Build Dev mode IOS

  • May 5, 2024
  • 1 reply
  • 60 views

Forum|alt.badge.img+3

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.");

      }

    }

  };

This post has been closed for comments

1 reply

Ryan Glanz
RevenueCat Staff
Forum|alt.badge.img+8
  • RevenueCat Staff
  • May 8, 2024

Hi, the store problem error is typically due to a network issue. Is this still occurring?