@stripe/stripe-react-native 0.7.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +48 -0
- package/README.md +3 -3
- package/android/build.gradle +8 -1
- package/android/gradle.properties +2 -2
- package/android/src/main/java/com/reactnativestripesdk/CardChangedEvent.kt +1 -0
- package/android/src/main/java/com/reactnativestripesdk/CardFieldView.kt +3 -0
- package/android/src/main/java/com/reactnativestripesdk/CardFieldViewManager.kt +3 -3
- package/android/src/main/java/com/reactnativestripesdk/CardFormCompleteEvent.kt +1 -0
- package/android/src/main/java/com/reactnativestripesdk/CardFormView.kt +99 -29
- package/android/src/main/java/com/reactnativestripesdk/CardFormViewManager.kt +4 -4
- package/android/src/main/java/com/reactnativestripesdk/CollectBankAccountLauncherFragment.kt +1 -1
- package/android/src/main/java/com/reactnativestripesdk/GooglePayPaymentMethodLauncherFragment.kt +1 -1
- package/android/src/main/java/com/reactnativestripesdk/Mappers.kt +27 -25
- package/android/src/main/java/com/reactnativestripesdk/PaymentMethodCreateParamsFactory.kt +75 -35
- package/android/src/main/java/com/reactnativestripesdk/StripeSdkModule.kt +69 -24
- package/android/src/main/java/com/reactnativestripesdk/StripeSdkPackage.kt +9 -1
- package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/AddToWalletButtonManager.kt +55 -0
- package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/AddToWalletButtonView.kt +148 -0
- package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/AddToWalletCompleteEvent.kt +22 -0
- package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/EphemeralKeyProvider.kt +35 -0
- package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/PushProvisioningProxy.kt +117 -0
- package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/TapAndPayProxy.kt +129 -0
- package/ios/CardFieldManager.m +1 -1
- package/ios/CardFieldView.swift +7 -6
- package/ios/CardFormView.swift +2 -1
- package/ios/Mappers.swift +32 -4
- package/ios/PaymentMethodFactory.swift +28 -17
- package/ios/StripeSdk.m +5 -0
- package/ios/StripeSdk.swift +74 -32
- package/ios/StripeSdk.xcodeproj/project.pbxproj +2 -2
- package/ios/pushprovisioning/AddToWalletButtonManager.m +18 -0
- package/ios/pushprovisioning/AddToWalletButtonManager.swift +19 -0
- package/ios/pushprovisioning/AddToWalletButtonView.swift +145 -0
- package/lib/commonjs/NativeStripeSdk.js.map +1 -1
- package/lib/commonjs/components/AddToWalletButton.js +2 -0
- package/lib/commonjs/components/AddToWalletButton.js.map +1 -0
- package/lib/commonjs/components/ApplePayButton.js +1 -1
- package/lib/commonjs/components/ApplePayButton.js.map +1 -1
- package/lib/commonjs/components/AuBECSDebitForm.js +1 -1
- package/lib/commonjs/components/AuBECSDebitForm.js.map +1 -1
- package/lib/commonjs/components/CardField.js +1 -1
- package/lib/commonjs/components/CardField.js.map +1 -1
- package/lib/commonjs/components/CardForm.js +1 -1
- package/lib/commonjs/components/CardForm.js.map +1 -1
- package/lib/commonjs/components/GooglePayButton.js +1 -1
- package/lib/commonjs/components/GooglePayButton.js.map +1 -1
- package/lib/commonjs/components/StripeContainer.js +1 -1
- package/lib/commonjs/components/StripeContainer.js.map +1 -1
- package/lib/commonjs/components/StripeProvider.js +1 -1
- package/lib/commonjs/components/StripeProvider.js.map +1 -1
- package/lib/commonjs/functions.js +1 -1
- package/lib/commonjs/functions.js.map +1 -1
- package/lib/commonjs/index.js +1 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/types/SetupIntent.js.map +1 -1
- package/lib/commonjs/types/components/CardFieldInput.js.map +1 -1
- package/lib/commonjs/types/index.js.map +1 -1
- package/lib/module/NativeStripeSdk.js.map +1 -1
- package/lib/module/components/AddToWalletButton.js +2 -0
- package/lib/module/components/AddToWalletButton.js.map +1 -0
- package/lib/module/components/ApplePayButton.js +1 -1
- package/lib/module/components/ApplePayButton.js.map +1 -1
- package/lib/module/components/AuBECSDebitForm.js +1 -1
- package/lib/module/components/AuBECSDebitForm.js.map +1 -1
- package/lib/module/components/CardField.js +1 -1
- package/lib/module/components/CardField.js.map +1 -1
- package/lib/module/components/CardForm.js +1 -1
- package/lib/module/components/CardForm.js.map +1 -1
- package/lib/module/components/GooglePayButton.js +1 -1
- package/lib/module/components/GooglePayButton.js.map +1 -1
- package/lib/module/components/StripeContainer.js +1 -1
- package/lib/module/components/StripeContainer.js.map +1 -1
- package/lib/module/components/StripeProvider.js +1 -1
- package/lib/module/components/StripeProvider.js.map +1 -1
- package/lib/module/functions.js +1 -1
- package/lib/module/functions.js.map +1 -1
- package/lib/module/index.js +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/types/SetupIntent.js.map +1 -1
- package/lib/module/types/components/CardFieldInput.js.map +1 -1
- package/lib/module/types/index.js.map +1 -1
- package/lib/typescript/example/src/App.d.ts +1 -0
- package/lib/typescript/example/src/screens/PayPalScreen.d.ts +1 -0
- package/lib/typescript/src/NativeStripeSdk.d.ts +10 -1
- package/lib/typescript/src/components/AddToWalletButton.d.ts +65 -0
- package/lib/typescript/src/components/CardField.d.ts +1 -1
- package/lib/typescript/src/components/CardForm.d.ts +3 -0
- package/lib/typescript/src/functions.d.ts +10 -1
- package/lib/typescript/src/index.d.ts +1 -0
- package/lib/typescript/src/types/PaymentMethod.d.ts +122 -73
- package/lib/typescript/src/types/SetupIntent.d.ts +2 -2
- package/lib/typescript/src/types/components/CardFieldInput.d.ts +2 -1
- package/lib/typescript/src/types/components/CardFormView.d.ts +12 -0
- package/lib/typescript/src/types/index.d.ts +17 -0
- package/package.json +5 -6
- package/src/NativeStripeSdk.tsx +5 -0
- package/src/components/AddToWalletButton.tsx +93 -0
- package/src/components/CardField.tsx +9 -8
- package/src/components/CardForm.tsx +21 -11
- package/src/functions.ts +27 -0
- package/src/index.tsx +4 -0
- package/src/types/PaymentMethod.ts +122 -74
- package/src/types/SetupIntent.ts +19 -2
- package/src/types/components/CardFieldInput.ts +2 -1
- package/src/types/components/CardFormView.ts +12 -1
- package/src/types/index.ts +27 -0
- package/stripe-react-native.podspec +3 -2
- package/android/build/.transforms/391dacf2d8747d5d964db20fd2dd8815/results.bin +0 -1
- package/android/build/.transforms/391dacf2d8747d5d964db20fd2dd8815/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/465a3f28c318295b6d1e745a1358f0e6/results.bin +0 -1
- package/android/build/.transforms/465a3f28c318295b6d1e745a1358f0e6/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/538f1369a832b015f982db8e9f3e63d4/results.bin +0 -1
- package/android/build/.transforms/538f1369a832b015f982db8e9f3e63d4/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/5821b0d6d2e0908c8ed0cd6c2f4e6587/results.bin +0 -1
- package/android/build/.transforms/5821b0d6d2e0908c8ed0cd6c2f4e6587/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/60446a8b59a82b3ae8bcd81aa8d01afc/results.bin +0 -1
- package/android/build/.transforms/60446a8b59a82b3ae8bcd81aa8d01afc/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/87295b99343bf0db705fbc154493ffa4/results.bin +0 -1
- package/android/build/.transforms/87295b99343bf0db705fbc154493ffa4/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/ae18a466edb55818daf7c30291ff4843/results.bin +0 -1
- package/android/build/.transforms/ae18a466edb55818daf7c30291ff4843/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/d42db6dbe74ca8dbcb5922d32e8646c4/results.bin +0 -1
- package/android/build/.transforms/d42db6dbe74ca8dbcb5922d32e8646c4/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/e9a96dae20bdea4f5ebd602fc83f5f77/results.bin +0 -1
- package/android/build/.transforms/e9a96dae20bdea4f5ebd602fc83f5f77/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/f183966fd9230baa4d89c2c4e2fcb664/results.bin +0 -1
- package/android/build/.transforms/f183966fd9230baa4d89c2c4e2fcb664/transformed/classes/classes.dex +0 -0
- package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/GooglepayButtonBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/GooglepayButtonBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.java +0 -52
- package/android/build/generated/source/buildConfig/debug/com/reactnativestripesdk/BuildConfig.java +0 -10
- package/android/build/generated/source/buildConfig/release/com/reactnativestripesdk/BuildConfig.java +0 -10
- package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml +0 -9
- package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json +0 -16
- package/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/AndroidManifest.xml +0 -9
- package/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/output-metadata.json +0 -16
- package/android/build/intermediates/aar_metadata/debug/aar-metadata.properties +0 -2
- package/android/build/intermediates/aar_metadata/release/aar-metadata.properties +0 -2
- package/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json +0 -1
- package/android/build/intermediates/annotation_processor_list/release/annotationProcessors.json +0 -1
- package/android/build/intermediates/compile_library_classes_jar/debug/classes.jar +0 -0
- package/android/build/intermediates/compile_library_classes_jar/release/classes.jar +0 -0
- package/android/build/intermediates/compile_r_class_jar/debug/R.jar +0 -0
- package/android/build/intermediates/compile_r_class_jar/release/R.jar +0 -0
- package/android/build/intermediates/compile_symbol_list/debug/R.txt +0 -7628
- package/android/build/intermediates/compile_symbol_list/release/R.txt +0 -7628
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ar-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ar_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-bg-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-bg_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ca-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ca_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-cs-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-cs_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-da-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-da_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-de-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-de_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-el-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-el_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-es-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-es_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-et-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-et_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fi-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fi_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-id-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-id_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-it-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-it_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ja-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ja_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ko-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ko_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ms-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ms_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-hdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-hdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-mdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-mdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v21_googlepay_button_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v8_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v8_googlepay_button_overlay.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-nl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-nl_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-no-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-no_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pl_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pt-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pt_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ru-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ru_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sk_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sl_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sv-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sv_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-th-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-th_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-tr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-tr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-uk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-uk_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-v21_googlepay_button_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-zh_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable_googlepay_button_overlay.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/layout-night-v8_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/layout-night-v8_pay_with_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/layout_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/layout_googlepay_button_no_shadow.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/layout_pay_with_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/layout_pay_with_googlepay_button_no_shadow.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ar-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ar_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-bg-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-bg_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ca-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ca_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-cs-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-cs_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-da-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-da_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-de-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-de_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-el-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-el_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-es-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-es_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-et-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-et_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-fi-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-fi_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-fr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-fr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-id-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-id_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-it-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-it_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ja-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ja_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ko-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ko_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ms-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ms_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-hdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-hdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-mdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-mdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v21_googlepay_button_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v8_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v8_googlepay_button_overlay.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-nl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-nl_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-no-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-no_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-pl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-pl_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-pt-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-pt_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ru-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ru_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sk_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sl_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sv-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sv_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-th-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-th_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-tr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-tr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-uk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-uk_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-v21_googlepay_button_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-zh_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable_googlepay_button_overlay.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/layout-night-v8_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/layout-night-v8_pay_with_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/layout_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/layout_googlepay_button_no_shadow.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/layout_pay_with_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/layout_pay_with_googlepay_button_no_shadow.xml.flat +0 -0
- package/android/build/intermediates/data_binding_base_class_log_artifact/debug/out/com.reactnativestripesdk-binding_classes.json +0 -0
- package/android/build/intermediates/data_binding_base_class_log_artifact/release/out/com.reactnativestripesdk-binding_classes.json +0 -0
- package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/googlepay_button-layout-night.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/googlepay_button-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/googlepay_button_no_shadow-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/pay_with_googlepay_button-layout-night.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/pay_with_googlepay_button-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/pay_with_googlepay_button_no_shadow-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/release/out/googlepay_button-layout-night.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/release/out/googlepay_button-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/release/out/googlepay_button_no_shadow-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/release/out/pay_with_googlepay_button-layout-night.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/release/out/pay_with_googlepay_button-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/release/out/pay_with_googlepay_button_no_shadow-layout.xml +0 -1
- package/android/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json +0 -0
- package/android/build/intermediates/incremental/dataBindingGenBaseClassesRelease/base_builder_log.json +0 -0
- package/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
- package/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
- package/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml +0 -2
- package/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml +0 -2
- package/android/build/intermediates/incremental/packageDebugAssets/merger.xml +0 -2
- package/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties +0 -116
- package/android/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml +0 -12
- package/android/build/intermediates/incremental/packageDebugResources/merged.dir/values-night-v8/values-night-v8.xml +0 -12
- package/android/build/intermediates/incremental/packageDebugResources/merger.xml +0 -2
- package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout-night-v8/googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout-night-v8/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageReleaseAssets/merger.xml +0 -2
- package/android/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties +0 -116
- package/android/build/intermediates/incremental/packageReleaseResources/merged.dir/values/values.xml +0 -12
- package/android/build/intermediates/incremental/packageReleaseResources/merged.dir/values-night-v8/values-night-v8.xml +0 -12
- package/android/build/intermediates/incremental/packageReleaseResources/merger.xml +0 -2
- package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout-night-v8/googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout-night-v8/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/BuildConfig.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/GooglepayButtonBinding.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.class +0 -0
- package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/BuildConfig.class +0 -0
- package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/GooglepayButtonBinding.class +0 -0
- package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.class +0 -0
- package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.class +0 -0
- package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.class +0 -0
- package/android/build/intermediates/library_java_res/debug/res.jar +0 -0
- package/android/build/intermediates/library_java_res/release/res.jar +0 -0
- package/android/build/intermediates/local_only_symbol_list/debug/R-def.txt +0 -26
- package/android/build/intermediates/local_only_symbol_list/release/R-def.txt +0 -26
- package/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +0 -11
- package/android/build/intermediates/manifest_merge_blame_file/release/manifest-merger-blame-release-report.txt +0 -11
- package/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml +0 -9
- package/android/build/intermediates/merged_manifest/release/AndroidManifest.xml +0 -9
- package/android/build/intermediates/navigation_json/debug/navigation.json +0 -1
- package/android/build/intermediates/navigation_json/release/navigation.json +0 -1
- package/android/build/intermediates/packaged_manifests/debug/output-metadata.json +0 -16
- package/android/build/intermediates/packaged_manifests/release/output-metadata.json +0 -16
- package/android/build/intermediates/packaged_res/debug/drawable/googlepay_button_content.xml +0 -48
- package/android/build/intermediates/packaged_res/debug/drawable/googlepay_button_overlay.xml +0 -11
- package/android/build/intermediates/packaged_res/debug/drawable/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ar/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ar-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-bg/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-bg-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ca/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ca-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-cs/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-cs-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-da/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-da-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-de/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/debug/drawable-de-night-v8/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/debug/drawable-el/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-el-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-es/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-es-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-et/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-et-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-fi/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/debug/drawable-fi-night-v8/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/debug/drawable-fr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-fr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-hr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-hr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-id/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-id-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-it/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-it-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ja/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ja-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ko/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ko-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-ms/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ms-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-night-hdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-hdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-mdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-mdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-v21/googlepay_button_background.xml +0 -7
- package/android/build/intermediates/packaged_res/debug/drawable-night-v21/googlepay_button_no_shadow_background.xml +0 -7
- package/android/build/intermediates/packaged_res/debug/drawable-night-v8/googlepay_button_content.xml +0 -48
- package/android/build/intermediates/packaged_res/debug/drawable-night-v8/googlepay_button_overlay.xml +0 -12
- package/android/build/intermediates/packaged_res/debug/drawable-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-night-xhdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-xhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-xxhdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-xxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-xxxhdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-xxxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-nl/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-nl-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-no/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-no-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-pl/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-pl-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-pt/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-pt-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ru/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ru-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sk/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sk-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sl/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sl-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sv/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sv-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-th/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-th-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-tr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-tr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-uk/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-uk-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-v21/googlepay_button_background.xml +0 -21
- package/android/build/intermediates/packaged_res/debug/drawable-v21/googlepay_button_no_shadow_background.xml +0 -21
- package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-zh/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/debug/layout/googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/debug/layout/googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/packaged_res/debug/layout/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/debug/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/packaged_res/debug/layout-night-v8/googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/debug/layout-night-v8/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/debug/values/values.xml +0 -12
- package/android/build/intermediates/packaged_res/debug/values-night-v8/values-night-v8.xml +0 -12
- package/android/build/intermediates/packaged_res/release/drawable/googlepay_button_content.xml +0 -48
- package/android/build/intermediates/packaged_res/release/drawable/googlepay_button_overlay.xml +0 -11
- package/android/build/intermediates/packaged_res/release/drawable/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ar/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ar-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-bg/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-bg-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ca/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ca-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-cs/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-cs-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-da/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-da-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-de/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/release/drawable-de-night-v8/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/release/drawable-el/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-el-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-es/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-es-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-et/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-et-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-fi/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/release/drawable-fi-night-v8/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/release/drawable-fr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-fr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-hr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-hr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-id/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-id-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-it/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-it-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ja/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ja-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ko/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ko-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-ms/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ms-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-night-hdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-hdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-mdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-mdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-v21/googlepay_button_background.xml +0 -7
- package/android/build/intermediates/packaged_res/release/drawable-night-v21/googlepay_button_no_shadow_background.xml +0 -7
- package/android/build/intermediates/packaged_res/release/drawable-night-v8/googlepay_button_content.xml +0 -48
- package/android/build/intermediates/packaged_res/release/drawable-night-v8/googlepay_button_overlay.xml +0 -12
- package/android/build/intermediates/packaged_res/release/drawable-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-night-xhdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-xhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-xxhdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-xxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-xxxhdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-xxxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-nl/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-nl-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-no/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-no-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-pl/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-pl-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-pt/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-pt-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ru/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ru-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sk/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sk-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sl/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sl-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sv/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sv-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-th/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-th-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-tr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-tr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-uk/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-uk-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-v21/googlepay_button_background.xml +0 -21
- package/android/build/intermediates/packaged_res/release/drawable-v21/googlepay_button_no_shadow_background.xml +0 -21
- package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-zh/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/release/layout/googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/release/layout/googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/packaged_res/release/layout/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/release/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/packaged_res/release/layout-night-v8/googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/release/layout-night-v8/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/release/values/values.xml +0 -12
- package/android/build/intermediates/packaged_res/release/values-night-v8/values-night-v8.xml +0 -12
- package/android/build/intermediates/runtime_library_classes_jar/debug/classes.jar +0 -0
- package/android/build/intermediates/runtime_library_classes_jar/release/classes.jar +0 -0
- package/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt +0 -5671
- package/android/build/intermediates/symbol_list_with_package_name/release/package-aware-r.txt +0 -5671
- package/android/build/kotlin/compileDebugKotlin/build-history.bin +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab +0 -2
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.s +0 -1
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/last-build.bin +0 -0
- package/android/build/kotlin/compileReleaseKotlin/build-history.bin +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/counters.tab +0 -2
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values.s +0 -1
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/last-build.bin +0 -0
- package/android/build/outputs/logs/manifest-merger-debug-report.txt +0 -25
- package/android/build/outputs/logs/manifest-merger-release-report.txt +0 -25
- package/android/build/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt +0 -10
- package/android/build/tmp/compileReleaseJavaWithJavac/source-classes-mapping.txt +0 -10
- package/android/build/tmp/kotlin-classes/debug/META-INF/reactnativestripesdk_debug.kotlin_module +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/AuBECSDebitFormView$setListeners$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/AuBECSDebitFormView.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/AuBECSDebitFormViewManager.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardChangedEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardChangedEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$10.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$6.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$7.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$8.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$9.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldViewManager.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFocusEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFocusEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormCompleteEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormCompleteEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormView.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormViewManager.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CollectBankAccountLauncherFragment$createBankAccountLauncher$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CollectBankAccountLauncherFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ConfirmPaymentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ConfirmSetupIntentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ConstantsKt.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CreateTokenErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ErrorsKt.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ExtensionsKt.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/FormCompleteEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/FormCompleteEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayButtonManager$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayButtonManager.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayButtonView.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$2.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$3.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$4.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayPaymentMethodLauncherFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/MappersKt$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/MappersKt.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$retrieveSetupIntent$1$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$retrieveSetupIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentMethodCreateParamsException.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentMethodCreateParamsFactory$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentMethodCreateParamsFactory.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentSheetErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentSheetFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentSheetFragmentKt.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/RetrievePaymentIntentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/RetrieveSetupIntentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeContainerManager.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeContainerView.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createPaymentMethod$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createTokenForCVCUpdate$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createTokenFromBankAccount$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createTokenFromCard$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$googlePayReceiver$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$mPaymentSheetReceiver$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$retrievePaymentIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$retrieveSetupIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$verifyMicrodeposits$paymentCallback$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$verifyMicrodeposits$setupCallback$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkPackage.class +0 -0
- package/android/build/tmp/kotlin-classes/release/META-INF/reactnativestripesdk_release.kotlin_module +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/AuBECSDebitFormView$setListeners$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/AuBECSDebitFormView.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/AuBECSDebitFormViewManager.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardChangedEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardChangedEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$10.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$6.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$7.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$8.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$9.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldViewManager.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFocusEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFocusEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormCompleteEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormCompleteEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormView.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormViewManager.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CollectBankAccountLauncherFragment$createBankAccountLauncher$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CollectBankAccountLauncherFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ConfirmPaymentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ConfirmSetupIntentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ConstantsKt.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CreateTokenErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ErrorsKt.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ExtensionsKt.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/FormCompleteEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/FormCompleteEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayButtonManager$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayButtonManager.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayButtonView.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$2.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$3.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$4.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayPaymentMethodLauncherFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/MappersKt$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/MappersKt.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$retrieveSetupIntent$1$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$retrieveSetupIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentMethodCreateParamsException.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentMethodCreateParamsFactory$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentMethodCreateParamsFactory.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentSheetErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentSheetFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentSheetFragmentKt.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/RetrievePaymentIntentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/RetrieveSetupIntentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeContainerManager.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeContainerView.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createPaymentMethod$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createTokenForCVCUpdate$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createTokenFromBankAccount$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createTokenFromCard$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$googlePayReceiver$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$mPaymentSheetReceiver$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$retrievePaymentIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$retrieveSetupIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$verifyMicrodeposits$paymentCallback$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$verifyMicrodeposits$setupCallback$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkPackage.class +0 -0
- package/ios/.DS_Store +0 -0
|
@@ -17,9 +17,19 @@ export interface Details {
|
|
|
17
17
|
* See the docs for details: https://stripe.com/docs/security/guide#validating-pci-compliance
|
|
18
18
|
*/
|
|
19
19
|
number?: string;
|
|
20
|
+
cvc?: string;
|
|
20
21
|
}
|
|
21
22
|
export interface Styles {
|
|
22
23
|
backgroundColor?: string;
|
|
24
|
+
borderWidth?: number;
|
|
25
|
+
borderColor?: string;
|
|
26
|
+
borderRadius?: number;
|
|
27
|
+
textColor?: string;
|
|
28
|
+
fontSize?: number;
|
|
29
|
+
placeholderColor?: string;
|
|
30
|
+
cursorColor?: string;
|
|
31
|
+
textErrorColor?: string;
|
|
32
|
+
fontFamily?: string;
|
|
23
33
|
}
|
|
24
34
|
export interface Placeholders {
|
|
25
35
|
number?: string;
|
|
@@ -34,6 +44,8 @@ export interface NativeProps {
|
|
|
34
44
|
style?: StyleProp<ViewStyle>;
|
|
35
45
|
autofocus?: boolean;
|
|
36
46
|
cardStyle?: Styles;
|
|
47
|
+
/** Android only */
|
|
48
|
+
placeholders?: Placeholders;
|
|
37
49
|
onFocusChange(event: NativeSyntheticEvent<{
|
|
38
50
|
focusedField: FieldName | null;
|
|
39
51
|
}>): void;
|
|
@@ -177,3 +177,20 @@ export declare type CollectBankAccountForSetupResult = {
|
|
|
177
177
|
setupIntent?: undefined;
|
|
178
178
|
error: StripeError<CollectBankAccountError>;
|
|
179
179
|
};
|
|
180
|
+
export declare type GooglePayCardToken = {
|
|
181
|
+
id: string;
|
|
182
|
+
cardLastFour: string;
|
|
183
|
+
network: number;
|
|
184
|
+
serviceProvider: number;
|
|
185
|
+
issuer: string;
|
|
186
|
+
status: 'TOKEN_STATE_NEEDS_IDENTITY_VERIFICATION' | 'TOKEN_STATE_PENDING' | 'TOKEN_STATE_SUSPENDED' | 'TOKEN_STATE_ACTIVE' | 'TOKEN_STATE_FELICA_PENDING_PROVISIONING' | 'TOKEN_STATE_UNTOKENIZED';
|
|
187
|
+
};
|
|
188
|
+
export declare type IsCardInWalletResult = {
|
|
189
|
+
isInWallet: boolean;
|
|
190
|
+
token?: GooglePayCardToken;
|
|
191
|
+
error?: undefined;
|
|
192
|
+
} | {
|
|
193
|
+
isInWallet?: undefined;
|
|
194
|
+
token?: undefined;
|
|
195
|
+
error: StripeError<GooglePayError>;
|
|
196
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stripe/stripe-react-native",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"author": "Stripe",
|
|
5
5
|
"description": "Stripe SDK for React Native",
|
|
6
6
|
"main": "lib/commonjs/index",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"prepare": "bob build",
|
|
26
26
|
"release": "./scripts/publish",
|
|
27
27
|
"example": "yarn --cwd example",
|
|
28
|
-
"pods": "cd example && pod-install --quiet",
|
|
28
|
+
"pods": "cd example && npx pod-install --quiet",
|
|
29
29
|
"bootstrap": "yarn example && yarn && yarn pods",
|
|
30
30
|
"bootstrap-no-pods": "yarn example && yarn",
|
|
31
31
|
"docs": "yarn typedoc ./src/index.tsx --out ./docs/api-reference --tsconfig ./tsconfig.json --readme none",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@wdio/sync": "^7.16.15",
|
|
61
61
|
"appium": "^1.22.2",
|
|
62
62
|
"appium-chromedriver": "4.26.2",
|
|
63
|
-
"eslint": "^7.
|
|
63
|
+
"eslint": "^7.32.0",
|
|
64
64
|
"eslint-config-prettier": "^6.11.0",
|
|
65
65
|
"eslint-plugin-prettier": "^3.1.3",
|
|
66
66
|
"expect-webdriverio": "^2.0.1",
|
|
@@ -68,10 +68,9 @@
|
|
|
68
68
|
"jest": "^26.6.3",
|
|
69
69
|
"metro-react-native-babel-preset": "^0.67.0",
|
|
70
70
|
"mocha": "^8.3.2",
|
|
71
|
-
"pod-install": "^0.1.0",
|
|
72
71
|
"prettier": "^2.0.5",
|
|
73
72
|
"react": "17.0.2",
|
|
74
|
-
"react-native": "0.
|
|
73
|
+
"react-native": "0.68.1",
|
|
75
74
|
"ts-node": "^9.1.1",
|
|
76
75
|
"typedoc": "^0.22.12",
|
|
77
76
|
"typescript": "~4.4.4",
|
|
@@ -154,6 +153,6 @@
|
|
|
154
153
|
]
|
|
155
154
|
},
|
|
156
155
|
"dependencies": {
|
|
157
|
-
"@expo/config-plugins": "^
|
|
156
|
+
"@expo/config-plugins": "^4.1.4"
|
|
158
157
|
}
|
|
159
158
|
}
|
package/src/NativeStripeSdk.tsx
CHANGED
|
@@ -24,6 +24,7 @@ import type {
|
|
|
24
24
|
OpenApplePaySetupResult,
|
|
25
25
|
Token,
|
|
26
26
|
VerifyMicrodepositsParams,
|
|
27
|
+
IsCardInWalletResult,
|
|
27
28
|
} from './types';
|
|
28
29
|
|
|
29
30
|
type NativeStripeSdkType = {
|
|
@@ -86,6 +87,10 @@ type NativeStripeSdkType = {
|
|
|
86
87
|
clientSecret: string,
|
|
87
88
|
params: PaymentMethod.CollectBankAccountParams
|
|
88
89
|
): Promise<ConfirmSetupIntentResult | ConfirmPaymentResult>;
|
|
90
|
+
getConstants(): { API_VERSIONS: { CORE: string; ISSUING: string } };
|
|
91
|
+
isCardInWallet(params: {
|
|
92
|
+
cardLastFour: string;
|
|
93
|
+
}): Promise<IsCardInWalletResult>;
|
|
89
94
|
};
|
|
90
95
|
|
|
91
96
|
const { StripeSdk } = NativeModules;
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import {
|
|
3
|
+
AccessibilityProps,
|
|
4
|
+
StyleProp,
|
|
5
|
+
ViewStyle,
|
|
6
|
+
requireNativeComponent,
|
|
7
|
+
NativeSyntheticEvent,
|
|
8
|
+
ImageSourcePropType,
|
|
9
|
+
} from 'react-native';
|
|
10
|
+
import type {
|
|
11
|
+
Token,
|
|
12
|
+
CardActionError,
|
|
13
|
+
StripeError,
|
|
14
|
+
GooglePayCardToken,
|
|
15
|
+
} from '../types';
|
|
16
|
+
|
|
17
|
+
const AddToWalletButtonNative =
|
|
18
|
+
requireNativeComponent<any>('AddToWalletButton');
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Add to wallet button component props
|
|
22
|
+
*/
|
|
23
|
+
export interface Props extends AccessibilityProps {
|
|
24
|
+
style?: StyleProp<ViewStyle>;
|
|
25
|
+
/** Sets the Apple Wallet/Google Pay button style. If the button is placed over a dark background, set this to 'onDarkBackground', otherwise set to 'onLightBackground'. */
|
|
26
|
+
iOSButtonStyle?: 'onDarkBackground' | 'onLightBackground';
|
|
27
|
+
/** The image asset to use as the Google Pay button. Downloadable from https://developers.google.com/pay/issuers/apis/push-provisioning/android/downloads/flutter/googlepay_flutter_buttons.zip */
|
|
28
|
+
androidAssetSource: ImageSourcePropType;
|
|
29
|
+
testID?: string;
|
|
30
|
+
/** Only set to `false` when shipping through TestFlight || App Store */
|
|
31
|
+
testEnv?: boolean;
|
|
32
|
+
/** Details of the Issued Card you'd like added to the device's wallet */
|
|
33
|
+
cardDetails: {
|
|
34
|
+
/** The `primary_account_identifier` value from the issued card. */
|
|
35
|
+
primaryAccountIdentifier: string | null;
|
|
36
|
+
/** The card holder name (used only on iOS) */
|
|
37
|
+
name: string;
|
|
38
|
+
/** A user-facing description of the card. Required on Android.*/
|
|
39
|
+
description: string;
|
|
40
|
+
/** Last 4 digits of the card, only used on iOS */
|
|
41
|
+
lastFour?: string;
|
|
42
|
+
/** Optional, only used on iOS */
|
|
43
|
+
brand?: Token.CardBrand;
|
|
44
|
+
};
|
|
45
|
+
// Optional, only for Android and only for cards that are in the "yellow path" (as defined by Google- https://developers.google.com/pay/issuers/apis/push-provisioning/android/wallet-operations#resolving_yellow_path). Obtain this value via the `isCardInWallet` method.
|
|
46
|
+
token?: GooglePayCardToken | null;
|
|
47
|
+
/** Used by stripe to securely obtain card info of the card being provisioned. */
|
|
48
|
+
ephemeralKey: object;
|
|
49
|
+
/** Called when the flow completes. If the `error` field is `null`, then the card was successfully added to the user's native wallet. */
|
|
50
|
+
onComplete(result: { error: StripeError<CardActionError> | null }): void;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Add to wallet button
|
|
55
|
+
*
|
|
56
|
+
* @example
|
|
57
|
+
* ```ts
|
|
58
|
+
* <AddToWalletButton
|
|
59
|
+
* testEnv={true}
|
|
60
|
+
* style={styles.myButtonStyle}
|
|
61
|
+
* iOSButtonStyle="onLightBackground"
|
|
62
|
+
* cardDetails={{
|
|
63
|
+
* primaryAccountIdentifier: "V-123",
|
|
64
|
+
* name: "David Wallace",
|
|
65
|
+
* lastFour: "4242",
|
|
66
|
+
* }}
|
|
67
|
+
* ephemeralKey={myEphemeralKey} // This object is retrieved from your server. See https://stripe.com/docs/issuing/cards/digital-wallets?platform=react-native#update-your-backend
|
|
68
|
+
* onComplete={(error) => {
|
|
69
|
+
* Alert.alert(
|
|
70
|
+
* error ? error.code : 'Success',
|
|
71
|
+
* error
|
|
72
|
+
* ? error.message
|
|
73
|
+
* : 'Card was successfully added to the wallet.'
|
|
74
|
+
* );
|
|
75
|
+
* }}
|
|
76
|
+
* />
|
|
77
|
+
* ```
|
|
78
|
+
* @param __namedParameters Props
|
|
79
|
+
* @returns JSX.Element
|
|
80
|
+
* @category ReactComponents
|
|
81
|
+
*/
|
|
82
|
+
export function AddToWalletButton({ onComplete, ...props }: Props) {
|
|
83
|
+
return (
|
|
84
|
+
<AddToWalletButtonNative
|
|
85
|
+
{...props}
|
|
86
|
+
onCompleteAction={(
|
|
87
|
+
value: NativeSyntheticEvent<{
|
|
88
|
+
error: StripeError<CardActionError> | null;
|
|
89
|
+
}>
|
|
90
|
+
) => onComplete(value.nativeEvent)}
|
|
91
|
+
/>
|
|
92
|
+
);
|
|
93
|
+
}
|
|
@@ -32,7 +32,7 @@ export interface Props extends AccessibilityProps {
|
|
|
32
32
|
style?: StyleProp<ViewStyle>;
|
|
33
33
|
postalCodeEnabled?: boolean;
|
|
34
34
|
cardStyle?: CardFieldInput.Styles;
|
|
35
|
-
|
|
35
|
+
placeholders?: CardFieldInput.Placeholders;
|
|
36
36
|
autofocus?: boolean;
|
|
37
37
|
onCardChange?(card: CardFieldInput.Details): void;
|
|
38
38
|
onBlur?(): void;
|
|
@@ -72,7 +72,7 @@ export const CardField = forwardRef<CardFieldInput.Methods, Props>(
|
|
|
72
72
|
onFocus,
|
|
73
73
|
onBlur,
|
|
74
74
|
cardStyle,
|
|
75
|
-
|
|
75
|
+
placeholders,
|
|
76
76
|
postalCodeEnabled,
|
|
77
77
|
...props
|
|
78
78
|
},
|
|
@@ -98,8 +98,9 @@ export const CardField = forwardRef<CardFieldInput.Methods, Props>(
|
|
|
98
98
|
if (card.hasOwnProperty('postalCode')) {
|
|
99
99
|
data.postalCode = card.postalCode || '';
|
|
100
100
|
}
|
|
101
|
-
if (card.hasOwnProperty('number')) {
|
|
101
|
+
if (card.hasOwnProperty('number') || card.hasOwnProperty('cvc')) {
|
|
102
102
|
data.number = card.number || '';
|
|
103
|
+
data.cvc = card.cvc || '';
|
|
103
104
|
if (__DEV__ && onCardChange && card.complete) {
|
|
104
105
|
console.warn(
|
|
105
106
|
`[stripe-react-native] ⚠️ WARNING: You've enabled \`dangerouslyGetFullCardDetails\`, meaning full card details are being returned. Only do this if you're certain that you fulfill the necessary PCI compliance requirements. Make sure that you're not mistakenly logging or storing full card details! See the docs for details: https://stripe.com/docs/security/guide#validating-pci-compliance`
|
|
@@ -186,11 +187,11 @@ export const CardField = forwardRef<CardFieldInput.Methods, Props>(
|
|
|
186
187
|
textErrorColor: cardStyle?.textErrorColor,
|
|
187
188
|
fontFamily: cardStyle?.fontFamily,
|
|
188
189
|
}}
|
|
189
|
-
|
|
190
|
-
number:
|
|
191
|
-
expiration:
|
|
192
|
-
cvc:
|
|
193
|
-
postalCode:
|
|
190
|
+
placeholders={{
|
|
191
|
+
number: placeholders?.number,
|
|
192
|
+
expiration: placeholders?.expiration,
|
|
193
|
+
cvc: placeholders?.cvc,
|
|
194
|
+
postalCode: placeholders?.postalCode,
|
|
194
195
|
}}
|
|
195
196
|
{...props}
|
|
196
197
|
/>
|
|
@@ -33,15 +33,15 @@ export interface Props extends AccessibilityProps {
|
|
|
33
33
|
autofocus?: boolean;
|
|
34
34
|
testID?: string;
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
/** All styles except backgroundColor are Android only */
|
|
37
37
|
cardStyle?: CardFormView.Styles;
|
|
38
38
|
// isUserInteractionEnabled?: boolean;
|
|
39
39
|
|
|
40
40
|
// TODO: will make it public when android-sdk allows for this
|
|
41
41
|
// postalCodeEnabled?: boolean;
|
|
42
42
|
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
/** Android only */
|
|
44
|
+
placeholders?: CardFormView.Placeholders;
|
|
45
45
|
// onBlur?(): void;
|
|
46
46
|
// onFocus?(focusedField: CardFormView.FieldNames | null): void;
|
|
47
47
|
onFormComplete?(card: CardFormView.Details): void;
|
|
@@ -80,7 +80,7 @@ export const CardForm = forwardRef<CardFormView.Methods, Props>(
|
|
|
80
80
|
// postalCodeEnabled = true,
|
|
81
81
|
// onFocus,
|
|
82
82
|
// onBlur,
|
|
83
|
-
|
|
83
|
+
placeholders,
|
|
84
84
|
...props
|
|
85
85
|
},
|
|
86
86
|
ref
|
|
@@ -101,8 +101,9 @@ export const CardForm = forwardRef<CardFormView.Methods, Props>(
|
|
|
101
101
|
postalCode: card.postalCode,
|
|
102
102
|
};
|
|
103
103
|
|
|
104
|
-
if (card.hasOwnProperty('number')) {
|
|
104
|
+
if (card.hasOwnProperty('number') || card.hasOwnProperty('cvc')) {
|
|
105
105
|
data.number = card.number || '';
|
|
106
|
+
data.cvc = card.cvc || '';
|
|
106
107
|
if (__DEV__ && onFormComplete && card.complete) {
|
|
107
108
|
console.warn(
|
|
108
109
|
`[stripe-react-native] ⚠️ WARNING: You've enabled \`dangerouslyGetFullCardDetails\`, meaning full card details are being returned. Only do this if you're certain that you fulfill the necessary PCI compliance requirements. Make sure that you're not mistakenly logging or storing full card details! See the docs for details: https://stripe.com/docs/security/guide#validating-pci-compliance`
|
|
@@ -165,16 +166,25 @@ export const CardForm = forwardRef<CardFormView.Methods, Props>(
|
|
|
165
166
|
onFormComplete={onFormCompleteHandler}
|
|
166
167
|
cardStyle={{
|
|
167
168
|
backgroundColor: cardStyle?.backgroundColor,
|
|
169
|
+
borderColor: cardStyle?.borderColor,
|
|
170
|
+
borderWidth: cardStyle?.borderWidth,
|
|
171
|
+
borderRadius: cardStyle?.borderRadius,
|
|
172
|
+
cursorColor: cardStyle?.cursorColor,
|
|
173
|
+
fontSize: cardStyle?.fontSize,
|
|
174
|
+
placeholderColor: cardStyle?.placeholderColor,
|
|
175
|
+
textColor: cardStyle?.textColor,
|
|
176
|
+
textErrorColor: cardStyle?.textErrorColor,
|
|
177
|
+
fontFamily: cardStyle?.fontFamily,
|
|
168
178
|
// disabledBackgroundColor: cardStyle?.disabledBackgroundColor,
|
|
169
179
|
// type: cardStyle?.type,
|
|
170
180
|
}}
|
|
171
181
|
// isUserInteractionEnabledValue={isUserInteractionEnabled}
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
182
|
+
placeholders={{
|
|
183
|
+
number: placeholders?.number,
|
|
184
|
+
expiration: placeholders?.expiration,
|
|
185
|
+
cvc: placeholders?.cvc,
|
|
186
|
+
postalCode: placeholders?.postalCode,
|
|
187
|
+
}}
|
|
178
188
|
onFocusChange={onFocusHandler}
|
|
179
189
|
// postalCodeEnabled={postalCodeEnabled}
|
|
180
190
|
{...props}
|
package/src/functions.ts
CHANGED
|
@@ -32,6 +32,7 @@ import {
|
|
|
32
32
|
VerifyMicrodepositsForSetupResult,
|
|
33
33
|
CollectBankAccountForPaymentResult,
|
|
34
34
|
CollectBankAccountForSetupResult,
|
|
35
|
+
IsCardInWalletResult,
|
|
35
36
|
} from './types';
|
|
36
37
|
|
|
37
38
|
const APPLE_PAY_NOT_SUPPORTED_MESSAGE =
|
|
@@ -563,3 +564,29 @@ export const collectBankAccountForSetup = async (
|
|
|
563
564
|
};
|
|
564
565
|
}
|
|
565
566
|
};
|
|
567
|
+
|
|
568
|
+
export const isCardInWallet = async (params: {
|
|
569
|
+
cardLastFour: string;
|
|
570
|
+
}): Promise<IsCardInWalletResult> => {
|
|
571
|
+
try {
|
|
572
|
+
const { isInWallet, token, error } = await NativeStripeSdk.isCardInWallet(
|
|
573
|
+
params
|
|
574
|
+
);
|
|
575
|
+
|
|
576
|
+
if (error) {
|
|
577
|
+
return {
|
|
578
|
+
error,
|
|
579
|
+
};
|
|
580
|
+
}
|
|
581
|
+
return {
|
|
582
|
+
isInWallet: isInWallet as boolean,
|
|
583
|
+
token: token,
|
|
584
|
+
};
|
|
585
|
+
} catch (error: any) {
|
|
586
|
+
return {
|
|
587
|
+
error: createError(error),
|
|
588
|
+
};
|
|
589
|
+
}
|
|
590
|
+
};
|
|
591
|
+
|
|
592
|
+
export const Constants = NativeStripeSdk.getConstants();
|
package/src/index.tsx
CHANGED
|
@@ -30,6 +30,10 @@ export {
|
|
|
30
30
|
GooglePayButton,
|
|
31
31
|
Props as GooglePayButtonProps,
|
|
32
32
|
} from './components/GooglePayButton';
|
|
33
|
+
export {
|
|
34
|
+
AddToWalletButton,
|
|
35
|
+
Props as AddToWalletButtonProps,
|
|
36
|
+
} from './components/AddToWalletButton';
|
|
33
37
|
|
|
34
38
|
export * from './functions';
|
|
35
39
|
|
|
@@ -12,7 +12,7 @@ export interface Result {
|
|
|
12
12
|
liveMode: boolean;
|
|
13
13
|
customerId: string;
|
|
14
14
|
billingDetails: BillingDetails;
|
|
15
|
-
|
|
15
|
+
paymentMethodType: Type;
|
|
16
16
|
AuBecsDebit: AuBecsDebitResult;
|
|
17
17
|
BacsDebit: BacsDebitResult;
|
|
18
18
|
Card: CardResult;
|
|
@@ -21,6 +21,7 @@ export interface Result {
|
|
|
21
21
|
SepaDebit: SepaDebitResult;
|
|
22
22
|
Sofort: SofortResult;
|
|
23
23
|
Upi: UpiResult;
|
|
24
|
+
USBankAccount: USBankAccountResult;
|
|
24
25
|
}
|
|
25
26
|
|
|
26
27
|
export type CreateParams =
|
|
@@ -40,118 +41,162 @@ export type CreateParams =
|
|
|
40
41
|
| KlarnaParams
|
|
41
42
|
// | WeChatPayParams
|
|
42
43
|
| BancontactParams
|
|
43
|
-
| USBankAccountParams
|
|
44
|
+
| USBankAccountParams
|
|
45
|
+
| PayPalParams;
|
|
44
46
|
|
|
45
47
|
export type ConfirmParams = CreateParams;
|
|
46
48
|
|
|
47
|
-
export type CreateOptions = {
|
|
49
|
+
export type CreateOptions = {
|
|
50
|
+
setupFutureUsage?: FutureUsage;
|
|
51
|
+
};
|
|
48
52
|
|
|
49
53
|
export type ConfirmOptions = CreateOptions;
|
|
50
54
|
|
|
51
55
|
export type ShippingDetails = BillingDetails;
|
|
52
56
|
|
|
53
|
-
interface BaseParams {
|
|
54
|
-
billingDetails?: BillingDetails;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
57
|
export type CardParams =
|
|
58
|
-
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
58
|
+
| {
|
|
59
|
+
paymentMethodType: 'Card';
|
|
60
|
+
paymentMethodData?: {
|
|
61
|
+
token?: string;
|
|
62
|
+
billingDetails?: BillingDetails;
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
| {
|
|
66
|
+
paymentMethodType: 'Card';
|
|
67
|
+
paymentMethodData: {
|
|
68
|
+
paymentMethodId: string;
|
|
69
|
+
cvc?: string;
|
|
70
|
+
billingDetails?: BillingDetails;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
export interface IdealParams {
|
|
75
|
+
paymentMethodType: 'Ideal';
|
|
76
|
+
paymentMethodData?: {
|
|
77
|
+
bankName?: string;
|
|
78
|
+
billingDetails?: BillingDetails;
|
|
79
|
+
};
|
|
73
80
|
}
|
|
74
81
|
|
|
75
82
|
export interface FPXParams {
|
|
76
|
-
|
|
77
|
-
testOfflineBank?: boolean;
|
|
83
|
+
paymentMethodType: 'Fpx';
|
|
84
|
+
paymentMethodData?: { testOfflineBank?: boolean };
|
|
78
85
|
}
|
|
79
86
|
|
|
80
87
|
export interface AlipayParams {
|
|
81
|
-
|
|
88
|
+
paymentMethodType: 'Alipay';
|
|
82
89
|
}
|
|
83
90
|
|
|
84
|
-
export interface OxxoParams
|
|
85
|
-
|
|
91
|
+
export interface OxxoParams {
|
|
92
|
+
paymentMethodType: 'Oxxo';
|
|
93
|
+
paymentMethodData: {
|
|
94
|
+
billingDetails: BillingDetails;
|
|
95
|
+
};
|
|
86
96
|
}
|
|
87
97
|
|
|
88
|
-
export interface SofortParams
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
98
|
+
export interface SofortParams {
|
|
99
|
+
paymentMethodType: 'Sofort';
|
|
100
|
+
paymentMethodData: {
|
|
101
|
+
country: string;
|
|
102
|
+
billingDetails: BillingDetails;
|
|
103
|
+
};
|
|
92
104
|
}
|
|
93
|
-
export interface GrabPayParams
|
|
94
|
-
|
|
105
|
+
export interface GrabPayParams {
|
|
106
|
+
paymentMethodType: 'GrabPay';
|
|
107
|
+
paymentMethodData?: {
|
|
108
|
+
billingDetails?: BillingDetails;
|
|
109
|
+
};
|
|
95
110
|
}
|
|
96
111
|
|
|
97
|
-
export interface BancontactParams
|
|
98
|
-
|
|
99
|
-
|
|
112
|
+
export interface BancontactParams {
|
|
113
|
+
paymentMethodType: 'Bancontact';
|
|
114
|
+
paymentMethodData: {
|
|
115
|
+
billingDetails: BillingDetails;
|
|
116
|
+
};
|
|
100
117
|
}
|
|
101
118
|
|
|
102
|
-
export interface SepaParams
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
119
|
+
export interface SepaParams {
|
|
120
|
+
paymentMethodType: 'SepaDebit';
|
|
121
|
+
paymentMethodData: {
|
|
122
|
+
iban: string;
|
|
123
|
+
billingDetails: BillingDetails;
|
|
124
|
+
};
|
|
106
125
|
}
|
|
107
126
|
|
|
108
|
-
export interface GiropayParams
|
|
109
|
-
|
|
127
|
+
export interface GiropayParams {
|
|
128
|
+
paymentMethodType: 'Giropay';
|
|
129
|
+
paymentMethodData: {
|
|
130
|
+
billingDetails: BillingDetails;
|
|
131
|
+
};
|
|
110
132
|
}
|
|
111
133
|
|
|
112
|
-
export interface AfterpayClearpayParams
|
|
113
|
-
|
|
114
|
-
|
|
134
|
+
export interface AfterpayClearpayParams {
|
|
135
|
+
paymentMethodType: 'AfterpayClearpay';
|
|
136
|
+
paymentMethodData: {
|
|
137
|
+
shippingDetails: ShippingDetails;
|
|
138
|
+
billingDetails: BillingDetails;
|
|
139
|
+
};
|
|
115
140
|
}
|
|
116
141
|
|
|
117
142
|
export type KlarnaParams = {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
143
|
+
paymentMethodType: 'Klarna';
|
|
144
|
+
paymentMethodData: {
|
|
145
|
+
billingDetails: Pick<Required<BillingDetails>, 'email'> & {
|
|
146
|
+
address: Pick<Required<Address>, 'country'>;
|
|
147
|
+
} & BillingDetails;
|
|
148
|
+
};
|
|
122
149
|
};
|
|
123
150
|
|
|
124
|
-
export interface EpsParams
|
|
125
|
-
|
|
151
|
+
export interface EpsParams {
|
|
152
|
+
paymentMethodType: 'Eps';
|
|
153
|
+
paymentMethodData: {
|
|
154
|
+
billingDetails: BillingDetails;
|
|
155
|
+
};
|
|
126
156
|
}
|
|
127
157
|
|
|
128
|
-
export interface P24Params
|
|
129
|
-
|
|
158
|
+
export interface P24Params {
|
|
159
|
+
paymentMethodType: 'P24';
|
|
160
|
+
paymentMethodData: {
|
|
161
|
+
billingDetails: BillingDetails;
|
|
162
|
+
};
|
|
130
163
|
}
|
|
131
164
|
|
|
132
|
-
export interface WeChatPayParams
|
|
133
|
-
|
|
134
|
-
|
|
165
|
+
export interface WeChatPayParams {
|
|
166
|
+
paymentMethodType: 'WeChatPay';
|
|
167
|
+
paymentMethodData: {
|
|
168
|
+
appId: string;
|
|
169
|
+
billingDetails?: BillingDetails;
|
|
170
|
+
};
|
|
135
171
|
}
|
|
136
172
|
|
|
137
173
|
export interface AuBecsDebitParams {
|
|
138
|
-
|
|
139
|
-
formDetails: FormDetails;
|
|
174
|
+
paymentMethodType: 'AuBecsDebit';
|
|
175
|
+
paymentMethodData: { formDetails: FormDetails };
|
|
140
176
|
}
|
|
141
177
|
|
|
142
|
-
/**
|
|
143
|
-
*
|
|
144
|
-
*
|
|
178
|
+
/**
|
|
179
|
+
* If paymentMethodData is null, it is assumed that the bank account details have already been attached
|
|
180
|
+
* via `collectBankAccountForPayment` or `collectBankAccountForSetup`.
|
|
181
|
+
*/
|
|
145
182
|
export type USBankAccountParams = {
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
183
|
+
paymentMethodType: 'USBankAccount';
|
|
184
|
+
paymentMethodData?: {
|
|
185
|
+
billingDetails: Pick<Required<BillingDetails>, 'name'> & BillingDetails;
|
|
186
|
+
accountNumber: string;
|
|
187
|
+
routingNumber: string;
|
|
188
|
+
/** Defaults to Individual */
|
|
189
|
+
accountHolderType?: BankAcccountHolderType;
|
|
190
|
+
/** Defaults to Checking */
|
|
191
|
+
accountType?: BankAcccountType;
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
|
|
195
|
+
export type PayPalParams = {
|
|
196
|
+
paymentMethodType: 'PayPal';
|
|
197
|
+
paymentMethodData?: {
|
|
198
|
+
billingDetails?: BillingDetails;
|
|
199
|
+
};
|
|
155
200
|
};
|
|
156
201
|
|
|
157
202
|
export interface AuBecsDebitResult {
|
|
@@ -231,12 +276,15 @@ export type Type =
|
|
|
231
276
|
| 'Sofort'
|
|
232
277
|
| 'Upi'
|
|
233
278
|
| 'USBankAccount'
|
|
279
|
+
| 'PayPal'
|
|
234
280
|
| 'Unknown';
|
|
235
281
|
|
|
236
282
|
export type CollectBankAccountParams = {
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
283
|
+
paymentMethodType: 'USBankAccount';
|
|
284
|
+
paymentMethodData: {
|
|
285
|
+
billingDetails: {
|
|
286
|
+
name: string;
|
|
287
|
+
email?: string;
|
|
288
|
+
};
|
|
241
289
|
};
|
|
242
290
|
};
|
package/src/types/SetupIntent.ts
CHANGED
|
@@ -16,9 +16,26 @@ export interface Result {
|
|
|
16
16
|
nextAction: NextAction | null;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
export type ConfirmParams =
|
|
19
|
+
export type ConfirmParams =
|
|
20
|
+
| PaymentMethod.CardParams
|
|
21
|
+
| PaymentMethod.IdealParams
|
|
22
|
+
| PaymentMethod.OxxoParams
|
|
23
|
+
| PaymentMethod.P24Params
|
|
24
|
+
| PaymentMethod.AlipayParams
|
|
25
|
+
| PaymentMethod.GiropayParams
|
|
26
|
+
| PaymentMethod.SepaParams
|
|
27
|
+
| PaymentMethod.EpsParams
|
|
28
|
+
| PaymentMethod.AuBecsDebitParams
|
|
29
|
+
| PaymentMethod.SofortParams
|
|
30
|
+
| PaymentMethod.GrabPayParams
|
|
31
|
+
| PaymentMethod.FPXParams
|
|
32
|
+
| PaymentMethod.AfterpayClearpayParams
|
|
33
|
+
| PaymentMethod.KlarnaParams
|
|
34
|
+
| PaymentMethod.BancontactParams
|
|
35
|
+
| PaymentMethod.USBankAccountParams;
|
|
36
|
+
// TODO: Change the above back to PaymentMethod.CreateParams when PayPal is supported through SetupIntents
|
|
20
37
|
|
|
21
|
-
export type ConfirmOptions =
|
|
38
|
+
export type ConfirmOptions = {};
|
|
22
39
|
|
|
23
40
|
export type FutureUsage =
|
|
24
41
|
| 'Unknown'
|