AdaptySDK-Flutter icon indicating copy to clipboard operation
AdaptySDK-Flutter copied to clipboard

makePurchase didn't return anything always generating purchase sheet again and again

Open akahamzidollar opened this issue 1 year ago • 1 comments

I'm trying to call makPurchase function but it always generating sheet Here is Code:

Future<AdaptyProfile?> callMakePurchase(AdaptyPaywallProduct product) async {
    try {
      final result = await adapty.makePurchase(product: product);
      print(result);
      Get.find<AuthController>().refreshUser();
      return result;
    } on AdaptyError catch (adaptyError) {
      onAdaptyErrorOccurred?.call(adaptyError);
    } catch (e) {
      onUnknownErrorOccurred?.call(e);
    }
    return null;
  }

Screenshot:

akahamzidollar avatar Apr 29 '24 15:04 akahamzidollar

Hi, @akahamzidollar! The Adapty SDK does not currently support purchases made with the iOS Simulator. Please monitor this issue for further details.

x401om avatar Apr 29 '24 15:04 x401om

@x401om! Thank you for reply. This issue was produced on simulator and real device as well. But when i set StoreKit 2 Configuration on Adapty dashboard this issue was solved.

akahamzidollar avatar May 06 '24 07:05 akahamzidollar