ChatForm 和 ChatField 组件导致 Android 设备崩溃

问题描述 投票:0回答:1

我正在使用 Expo 创建一个 React Native 项目。我正在使用 stripe 进行付款。我正在使用 @stripe/stripe-react-native 中的 CardForm 组件来捕获卡详细信息以添加付款方式。 该组件在 Expo Go 和 ios 设备上运行良好,但在 android 设备(apk)上,它会导致崩溃。它只显示白屏,我必须关闭并重新打开应用程序。

电流输出 Expo Go 上的输出

这是代码:

import { CardForm, useStripe } from "@stripe/stripe-react-native";

<CardForm style={styles.cardForm} autofocus />

我尝试向我的 app.json 添加插件,添加插件后创建新的 android 目录等,但没有任何效果。

react-native expo stripe-payments
1个回答
0
投票

您需要访问设备日志以查找运行时抛出的实际错误。

有了这些信息,您应该将您在日志中找到的确切错误写入到Stripe Support,最好是可用于确认和调查问题的最小重现,

© www.soinside.com 2019 - 2024. All rights reserved.