Flutter iOS RevenueCat未捕获异常'NSInternalInconsistencyException'

xzlaal3s  于 2023-10-21  发布在  iOS
关注(0)|答案(2)|浏览(136)

我在控制台中得到了这个错误:

[Purchases] - INFO: There is no singleton instance. Make sure you configure Purchases before trying to get the default instance.
*** Assertion failure in +[RCCommonFunctionality getPurchaserInfoWithCompletionBlock:], RCCommonFunctionality.m:118
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'You must call setup first.'
*** First throw call stack:
(0x1a0379654 0x1a009bbcc 0x1a027c6ec 0x1a06c216c 0x1032908ac 0x1032cdf9c 0x1032cc0d4 0x105c3ae30 0x1053ef758 0x1056d58b4 0x1053f90ec 0x1053fb818 0x1a02f8134 0x1a02f7e50 0x1a02f752c 0x1a02f253c 0x1a02f1ba8 0x1aa461344 0x1a442d3e4 0x102c4069c 0x1a01798f0)
libc++abi.dylib: terminating with uncaught exception of type NSException
* thread #1, queue = 'com.apple.main-thread', stop reason = signal SIGABRT
    frame #0: 0x00000001a016ed88 libsystem_kernel.dylib`__pthread_kill + 8
libsystem_kernel.dylib`__pthread_kill:
->  0x1a016ed88 <+8>:  b.lo   0x1a016eda4               ; <+36>
    0x1a016ed8c <+12>: stp    x29, x30, [sp, #-0x10]!
    0x1a016ed90 <+16>: mov    x29, sp
    0x1a016ed94 <+20>: bl     0x1a014dad0               ; cerror_nocancel
Target 0: (Runner) stopped.
Lost connection to device.

但是,这是一个间歇性问题(即:并不总是发生)。实际上,我已经在启动时设置了Purchases示例(即:在用户通过身份验证并获得UID后立即进行):

await Purchases.setDebugLogsEnabled(isDebugEnabled);
 await Purchases.setup(kRevenueCatApiKey, appUserId: uid);

有什么我错过的吗?(但大多数时候它是有效的)

sg24os4d

sg24os4d1#

我发现问题了。因此,无论何时调用getPurchaserInfo,但如果Purchaser.setup尚未完成处理,则它将触发此异常。感谢@塞萨尔的评论。
在我的情况下,我发现这个问题是因为:

  • 我有两个Blocs,分别处理IAP和业务逻辑。
  • 用户通过身份验证后,IAP立即调用Purchases.setup。然后在主屏幕上,业务逻辑将通过执行getPurchaserInfo来检查本地数据与服务器的有效性。
  • 当互联网连接不是很好,并且在Purchases.setup完成处理之前,getPurchaserInfo被业务逻辑块触发时,问题就会出现。

因此,我所做的解决方案是确保业务逻辑块在IAP块使用Purchases.setup完成后开始初始化。比如将它们放置在等待每个进程的一个CANC函数中。

mpbci0fu

mpbci0fu2#

在我的情况下,我没有打电话:* 购买.configure()*

await Purchases.configure(PurchasesConfiguration(_apiKey));

相关问题