1、支付商家:Stripe。 React-Native-Stripe android版本是从0.2.0才开始支持。之前的版本只支持Apple Pay,android需要写原生代码。
2、根据React-Native android版本Google Pay示例代码,开发好后,用Debug版本测试,但是测试时是不会支付的,会报支付失败。如果用发行版本测试,会报商户未开通问题,需要先开通商户才能使用发行版本测试。
// Stripe Google Pay,安卓版本最低需要 4.2.0
目录:android/build.gradle
com.android.tools.build:gradle:4.2.0
目录:android/gradle/wrapper/gradle-wrapper.properties
https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
npm install @stripe/stripe-react-native后,先不要执行yarn命令
先把yarn.lock和package.lock文件删除,不把这两个文件删除,会影响android运行,打包发行版本后可能会因为环境原因造成不知名的闪退。
删除文件后,再执行yarn命令。
import { useGooglePay } from '@stripe/stripe-react-native';
const { initGooglePay, presentGooglePay } = useGooglePay();
const [canUseGooglePay, setCanUseGooglePay] = useState<boolean>(false);
useEffect(() => {
if (Platform.OS !== 'ios') {
initGooglePay({
testEnv: false,
merchantName: 'Stripe Test',
countryCode: 'AU',
}).then(({ error }) => {
if (error) {
}
else {
setCanUseGooglePay(true);
}
});
}
}, []);
const onGooglePay = () => {
if (!canUseGooglePay) return;
const { error } = await presentGooglePay({
clientSecret,
forSetupIntent: false,
currencyCode: 'AUD',
});
if (error) {
}
else {
}
};
3、截图Google Pay支付流程,到 Google Pay Business Console 中,在Business profile中填写商户信息,在Google Pay API中,上传支付流程截图,提交Google审核,审核通过后将会开通商户,会有商户ID发送到邮件里,在启动App时,像设置Apple Pay商户ID一样设置Google Pay的商户ID。
|