From 8bbc130a675ec9f8ec83754696f101f45061107e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A6=8A=E5=8E=9F=E6=98=8C=E5=BD=A6?= Date: Thu, 5 Dec 2024 14:16:32 +0900 Subject: [PATCH] chore --- .../java/com/getcapacitor/community/stripe/StripePlugin.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/payment/android/src/main/java/com/getcapacitor/community/stripe/StripePlugin.kt b/packages/payment/android/src/main/java/com/getcapacitor/community/stripe/StripePlugin.kt index d4f939ff..d5fb5e2e 100644 --- a/packages/payment/android/src/main/java/com/getcapacitor/community/stripe/StripePlugin.kt +++ b/packages/payment/android/src/main/java/com/getcapacitor/community/stripe/StripePlugin.kt @@ -65,7 +65,7 @@ class StripePlugin : Plugin() { metaData!!.stripeAccount ) -// Stripe.appInfo(AppInfo.create(APP_INFO_NAME)) + Stripe.appInfo = AppInfo.create(APP_INFO_NAME); googlePayExecutor.googlePayLauncher = GooglePayLauncher( activity, @@ -133,7 +133,7 @@ class StripePlugin : Plugin() { val stripeAccountId = call.getString("stripeAccount", null) PaymentConfiguration.init(context, publishableKey!!, stripeAccountId) -// setAppInfo.setAppInfo(AppInfo.create(APP_INFO_NAME)) + Stripe.appInfo = AppInfo.create(APP_INFO_NAME); call.resolve() } catch (e: Exception) { call.reject("unable to set publishable key: " + e.localizedMessage, e)