@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.
Files changed (1024) hide show
  1. package/CHANGELOG.md +48 -0
  2. package/README.md +3 -3
  3. package/android/build.gradle +8 -1
  4. package/android/gradle.properties +2 -2
  5. package/android/src/main/java/com/reactnativestripesdk/CardChangedEvent.kt +1 -0
  6. package/android/src/main/java/com/reactnativestripesdk/CardFieldView.kt +3 -0
  7. package/android/src/main/java/com/reactnativestripesdk/CardFieldViewManager.kt +3 -3
  8. package/android/src/main/java/com/reactnativestripesdk/CardFormCompleteEvent.kt +1 -0
  9. package/android/src/main/java/com/reactnativestripesdk/CardFormView.kt +99 -29
  10. package/android/src/main/java/com/reactnativestripesdk/CardFormViewManager.kt +4 -4
  11. package/android/src/main/java/com/reactnativestripesdk/CollectBankAccountLauncherFragment.kt +1 -1
  12. package/android/src/main/java/com/reactnativestripesdk/GooglePayPaymentMethodLauncherFragment.kt +1 -1
  13. package/android/src/main/java/com/reactnativestripesdk/Mappers.kt +27 -25
  14. package/android/src/main/java/com/reactnativestripesdk/PaymentMethodCreateParamsFactory.kt +75 -35
  15. package/android/src/main/java/com/reactnativestripesdk/StripeSdkModule.kt +69 -24
  16. package/android/src/main/java/com/reactnativestripesdk/StripeSdkPackage.kt +9 -1
  17. package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/AddToWalletButtonManager.kt +55 -0
  18. package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/AddToWalletButtonView.kt +148 -0
  19. package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/AddToWalletCompleteEvent.kt +22 -0
  20. package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/EphemeralKeyProvider.kt +35 -0
  21. package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/PushProvisioningProxy.kt +117 -0
  22. package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/TapAndPayProxy.kt +129 -0
  23. package/ios/CardFieldManager.m +1 -1
  24. package/ios/CardFieldView.swift +7 -6
  25. package/ios/CardFormView.swift +2 -1
  26. package/ios/Mappers.swift +32 -4
  27. package/ios/PaymentMethodFactory.swift +28 -17
  28. package/ios/StripeSdk.m +5 -0
  29. package/ios/StripeSdk.swift +74 -32
  30. package/ios/StripeSdk.xcodeproj/project.pbxproj +2 -2
  31. package/ios/pushprovisioning/AddToWalletButtonManager.m +18 -0
  32. package/ios/pushprovisioning/AddToWalletButtonManager.swift +19 -0
  33. package/ios/pushprovisioning/AddToWalletButtonView.swift +145 -0
  34. package/lib/commonjs/NativeStripeSdk.js.map +1 -1
  35. package/lib/commonjs/components/AddToWalletButton.js +2 -0
  36. package/lib/commonjs/components/AddToWalletButton.js.map +1 -0
  37. package/lib/commonjs/components/ApplePayButton.js +1 -1
  38. package/lib/commonjs/components/ApplePayButton.js.map +1 -1
  39. package/lib/commonjs/components/AuBECSDebitForm.js +1 -1
  40. package/lib/commonjs/components/AuBECSDebitForm.js.map +1 -1
  41. package/lib/commonjs/components/CardField.js +1 -1
  42. package/lib/commonjs/components/CardField.js.map +1 -1
  43. package/lib/commonjs/components/CardForm.js +1 -1
  44. package/lib/commonjs/components/CardForm.js.map +1 -1
  45. package/lib/commonjs/components/GooglePayButton.js +1 -1
  46. package/lib/commonjs/components/GooglePayButton.js.map +1 -1
  47. package/lib/commonjs/components/StripeContainer.js +1 -1
  48. package/lib/commonjs/components/StripeContainer.js.map +1 -1
  49. package/lib/commonjs/components/StripeProvider.js +1 -1
  50. package/lib/commonjs/components/StripeProvider.js.map +1 -1
  51. package/lib/commonjs/functions.js +1 -1
  52. package/lib/commonjs/functions.js.map +1 -1
  53. package/lib/commonjs/index.js +1 -1
  54. package/lib/commonjs/index.js.map +1 -1
  55. package/lib/commonjs/types/SetupIntent.js.map +1 -1
  56. package/lib/commonjs/types/components/CardFieldInput.js.map +1 -1
  57. package/lib/commonjs/types/index.js.map +1 -1
  58. package/lib/module/NativeStripeSdk.js.map +1 -1
  59. package/lib/module/components/AddToWalletButton.js +2 -0
  60. package/lib/module/components/AddToWalletButton.js.map +1 -0
  61. package/lib/module/components/ApplePayButton.js +1 -1
  62. package/lib/module/components/ApplePayButton.js.map +1 -1
  63. package/lib/module/components/AuBECSDebitForm.js +1 -1
  64. package/lib/module/components/AuBECSDebitForm.js.map +1 -1
  65. package/lib/module/components/CardField.js +1 -1
  66. package/lib/module/components/CardField.js.map +1 -1
  67. package/lib/module/components/CardForm.js +1 -1
  68. package/lib/module/components/CardForm.js.map +1 -1
  69. package/lib/module/components/GooglePayButton.js +1 -1
  70. package/lib/module/components/GooglePayButton.js.map +1 -1
  71. package/lib/module/components/StripeContainer.js +1 -1
  72. package/lib/module/components/StripeContainer.js.map +1 -1
  73. package/lib/module/components/StripeProvider.js +1 -1
  74. package/lib/module/components/StripeProvider.js.map +1 -1
  75. package/lib/module/functions.js +1 -1
  76. package/lib/module/functions.js.map +1 -1
  77. package/lib/module/index.js +1 -1
  78. package/lib/module/index.js.map +1 -1
  79. package/lib/module/types/SetupIntent.js.map +1 -1
  80. package/lib/module/types/components/CardFieldInput.js.map +1 -1
  81. package/lib/module/types/index.js.map +1 -1
  82. package/lib/typescript/example/src/App.d.ts +1 -0
  83. package/lib/typescript/example/src/screens/PayPalScreen.d.ts +1 -0
  84. package/lib/typescript/src/NativeStripeSdk.d.ts +10 -1
  85. package/lib/typescript/src/components/AddToWalletButton.d.ts +65 -0
  86. package/lib/typescript/src/components/CardField.d.ts +1 -1
  87. package/lib/typescript/src/components/CardForm.d.ts +3 -0
  88. package/lib/typescript/src/functions.d.ts +10 -1
  89. package/lib/typescript/src/index.d.ts +1 -0
  90. package/lib/typescript/src/types/PaymentMethod.d.ts +122 -73
  91. package/lib/typescript/src/types/SetupIntent.d.ts +2 -2
  92. package/lib/typescript/src/types/components/CardFieldInput.d.ts +2 -1
  93. package/lib/typescript/src/types/components/CardFormView.d.ts +12 -0
  94. package/lib/typescript/src/types/index.d.ts +17 -0
  95. package/package.json +5 -6
  96. package/src/NativeStripeSdk.tsx +5 -0
  97. package/src/components/AddToWalletButton.tsx +93 -0
  98. package/src/components/CardField.tsx +9 -8
  99. package/src/components/CardForm.tsx +21 -11
  100. package/src/functions.ts +27 -0
  101. package/src/index.tsx +4 -0
  102. package/src/types/PaymentMethod.ts +122 -74
  103. package/src/types/SetupIntent.ts +19 -2
  104. package/src/types/components/CardFieldInput.ts +2 -1
  105. package/src/types/components/CardFormView.ts +12 -1
  106. package/src/types/index.ts +27 -0
  107. package/stripe-react-native.podspec +3 -2
  108. package/android/build/.transforms/391dacf2d8747d5d964db20fd2dd8815/results.bin +0 -1
  109. package/android/build/.transforms/391dacf2d8747d5d964db20fd2dd8815/transformed/classes/classes.dex +0 -0
  110. package/android/build/.transforms/465a3f28c318295b6d1e745a1358f0e6/results.bin +0 -1
  111. package/android/build/.transforms/465a3f28c318295b6d1e745a1358f0e6/transformed/classes/classes.dex +0 -0
  112. package/android/build/.transforms/538f1369a832b015f982db8e9f3e63d4/results.bin +0 -1
  113. package/android/build/.transforms/538f1369a832b015f982db8e9f3e63d4/transformed/classes/classes.dex +0 -0
  114. package/android/build/.transforms/5821b0d6d2e0908c8ed0cd6c2f4e6587/results.bin +0 -1
  115. package/android/build/.transforms/5821b0d6d2e0908c8ed0cd6c2f4e6587/transformed/classes/classes.dex +0 -0
  116. package/android/build/.transforms/60446a8b59a82b3ae8bcd81aa8d01afc/results.bin +0 -1
  117. package/android/build/.transforms/60446a8b59a82b3ae8bcd81aa8d01afc/transformed/classes/classes.dex +0 -0
  118. package/android/build/.transforms/87295b99343bf0db705fbc154493ffa4/results.bin +0 -1
  119. package/android/build/.transforms/87295b99343bf0db705fbc154493ffa4/transformed/classes/classes.dex +0 -0
  120. package/android/build/.transforms/ae18a466edb55818daf7c30291ff4843/results.bin +0 -1
  121. package/android/build/.transforms/ae18a466edb55818daf7c30291ff4843/transformed/classes/classes.dex +0 -0
  122. package/android/build/.transforms/d42db6dbe74ca8dbcb5922d32e8646c4/results.bin +0 -1
  123. package/android/build/.transforms/d42db6dbe74ca8dbcb5922d32e8646c4/transformed/classes/classes.dex +0 -0
  124. package/android/build/.transforms/e9a96dae20bdea4f5ebd602fc83f5f77/results.bin +0 -1
  125. package/android/build/.transforms/e9a96dae20bdea4f5ebd602fc83f5f77/transformed/classes/classes.dex +0 -0
  126. package/android/build/.transforms/f183966fd9230baa4d89c2c4e2fcb664/results.bin +0 -1
  127. package/android/build/.transforms/f183966fd9230baa4d89c2c4e2fcb664/transformed/classes/classes.dex +0 -0
  128. package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/GooglepayButtonBinding.java +0 -52
  129. package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.java +0 -52
  130. package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.java +0 -52
  131. package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.java +0 -52
  132. package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/GooglepayButtonBinding.java +0 -52
  133. package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.java +0 -52
  134. package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.java +0 -52
  135. package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.java +0 -52
  136. package/android/build/generated/source/buildConfig/debug/com/reactnativestripesdk/BuildConfig.java +0 -10
  137. package/android/build/generated/source/buildConfig/release/com/reactnativestripesdk/BuildConfig.java +0 -10
  138. package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml +0 -9
  139. package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json +0 -16
  140. package/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/AndroidManifest.xml +0 -9
  141. package/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/output-metadata.json +0 -16
  142. package/android/build/intermediates/aar_metadata/debug/aar-metadata.properties +0 -2
  143. package/android/build/intermediates/aar_metadata/release/aar-metadata.properties +0 -2
  144. package/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json +0 -1
  145. package/android/build/intermediates/annotation_processor_list/release/annotationProcessors.json +0 -1
  146. package/android/build/intermediates/compile_library_classes_jar/debug/classes.jar +0 -0
  147. package/android/build/intermediates/compile_library_classes_jar/release/classes.jar +0 -0
  148. package/android/build/intermediates/compile_r_class_jar/debug/R.jar +0 -0
  149. package/android/build/intermediates/compile_r_class_jar/release/R.jar +0 -0
  150. package/android/build/intermediates/compile_symbol_list/debug/R.txt +0 -7628
  151. package/android/build/intermediates/compile_symbol_list/release/R.txt +0 -7628
  152. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ar-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  153. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ar_pay_with_googlepay_button_content.xml.flat +0 -0
  154. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-bg-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  155. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-bg_pay_with_googlepay_button_content.xml.flat +0 -0
  156. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ca-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  157. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ca_pay_with_googlepay_button_content.xml.flat +0 -0
  158. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-cs-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  159. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-cs_pay_with_googlepay_button_content.xml.flat +0 -0
  160. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-da-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  161. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-da_pay_with_googlepay_button_content.xml.flat +0 -0
  162. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-de-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  163. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-de_pay_with_googlepay_button_content.xml.flat +0 -0
  164. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-el-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  165. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-el_pay_with_googlepay_button_content.xml.flat +0 -0
  166. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-es-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  167. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-es_pay_with_googlepay_button_content.xml.flat +0 -0
  168. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-et-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  169. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-et_pay_with_googlepay_button_content.xml.flat +0 -0
  170. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fi-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  171. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fi_pay_with_googlepay_button_content.xml.flat +0 -0
  172. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  173. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fr_pay_with_googlepay_button_content.xml.flat +0 -0
  174. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  175. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  176. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  177. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  178. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  179. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  180. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  181. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hr_pay_with_googlepay_button_content.xml.flat +0 -0
  182. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-id-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  183. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-id_pay_with_googlepay_button_content.xml.flat +0 -0
  184. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-it-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  185. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-it_pay_with_googlepay_button_content.xml.flat +0 -0
  186. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ja-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  187. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ja_pay_with_googlepay_button_content.xml.flat +0 -0
  188. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ko-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  189. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ko_pay_with_googlepay_button_content.xml.flat +0 -0
  190. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  191. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  192. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  193. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  194. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  195. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  196. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ms-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  197. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ms_pay_with_googlepay_button_content.xml.flat +0 -0
  198. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-hdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  199. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-hdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  200. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-mdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  201. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-mdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  202. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v21_googlepay_button_background.xml.flat +0 -0
  203. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
  204. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v8_googlepay_button_content.xml.flat +0 -0
  205. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v8_googlepay_button_overlay.xml.flat +0 -0
  206. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  207. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  208. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  209. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  210. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  211. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  212. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  213. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-nl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  214. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-nl_pay_with_googlepay_button_content.xml.flat +0 -0
  215. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-no-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  216. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-no_pay_with_googlepay_button_content.xml.flat +0 -0
  217. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  218. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pl_pay_with_googlepay_button_content.xml.flat +0 -0
  219. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pt-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  220. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pt_pay_with_googlepay_button_content.xml.flat +0 -0
  221. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ru-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  222. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ru_pay_with_googlepay_button_content.xml.flat +0 -0
  223. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  224. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sk_pay_with_googlepay_button_content.xml.flat +0 -0
  225. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  226. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sl_pay_with_googlepay_button_content.xml.flat +0 -0
  227. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  228. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sr_pay_with_googlepay_button_content.xml.flat +0 -0
  229. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sv-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  230. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sv_pay_with_googlepay_button_content.xml.flat +0 -0
  231. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-th-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  232. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-th_pay_with_googlepay_button_content.xml.flat +0 -0
  233. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-tr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  234. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-tr_pay_with_googlepay_button_content.xml.flat +0 -0
  235. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-uk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  236. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-uk_pay_with_googlepay_button_content.xml.flat +0 -0
  237. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-v21_googlepay_button_background.xml.flat +0 -0
  238. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
  239. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  240. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  241. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  242. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  243. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  244. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  245. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  246. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  247. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  248. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  249. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  250. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  251. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  252. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  253. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  254. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  255. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  256. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  257. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-zh_pay_with_googlepay_button_content.xml.flat +0 -0
  258. package/android/build/intermediates/compiled_local_resources/debug/out/drawable_googlepay_button_content.xml.flat +0 -0
  259. package/android/build/intermediates/compiled_local_resources/debug/out/drawable_googlepay_button_overlay.xml.flat +0 -0
  260. package/android/build/intermediates/compiled_local_resources/debug/out/drawable_pay_with_googlepay_button_content.xml.flat +0 -0
  261. package/android/build/intermediates/compiled_local_resources/debug/out/layout-night-v8_googlepay_button.xml.flat +0 -0
  262. package/android/build/intermediates/compiled_local_resources/debug/out/layout-night-v8_pay_with_googlepay_button.xml.flat +0 -0
  263. package/android/build/intermediates/compiled_local_resources/debug/out/layout_googlepay_button.xml.flat +0 -0
  264. package/android/build/intermediates/compiled_local_resources/debug/out/layout_googlepay_button_no_shadow.xml.flat +0 -0
  265. package/android/build/intermediates/compiled_local_resources/debug/out/layout_pay_with_googlepay_button.xml.flat +0 -0
  266. package/android/build/intermediates/compiled_local_resources/debug/out/layout_pay_with_googlepay_button_no_shadow.xml.flat +0 -0
  267. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ar-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  268. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ar_pay_with_googlepay_button_content.xml.flat +0 -0
  269. package/android/build/intermediates/compiled_local_resources/release/out/drawable-bg-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  270. package/android/build/intermediates/compiled_local_resources/release/out/drawable-bg_pay_with_googlepay_button_content.xml.flat +0 -0
  271. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ca-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  272. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ca_pay_with_googlepay_button_content.xml.flat +0 -0
  273. package/android/build/intermediates/compiled_local_resources/release/out/drawable-cs-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  274. package/android/build/intermediates/compiled_local_resources/release/out/drawable-cs_pay_with_googlepay_button_content.xml.flat +0 -0
  275. package/android/build/intermediates/compiled_local_resources/release/out/drawable-da-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  276. package/android/build/intermediates/compiled_local_resources/release/out/drawable-da_pay_with_googlepay_button_content.xml.flat +0 -0
  277. package/android/build/intermediates/compiled_local_resources/release/out/drawable-de-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  278. package/android/build/intermediates/compiled_local_resources/release/out/drawable-de_pay_with_googlepay_button_content.xml.flat +0 -0
  279. package/android/build/intermediates/compiled_local_resources/release/out/drawable-el-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  280. package/android/build/intermediates/compiled_local_resources/release/out/drawable-el_pay_with_googlepay_button_content.xml.flat +0 -0
  281. package/android/build/intermediates/compiled_local_resources/release/out/drawable-es-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  282. package/android/build/intermediates/compiled_local_resources/release/out/drawable-es_pay_with_googlepay_button_content.xml.flat +0 -0
  283. package/android/build/intermediates/compiled_local_resources/release/out/drawable-et-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  284. package/android/build/intermediates/compiled_local_resources/release/out/drawable-et_pay_with_googlepay_button_content.xml.flat +0 -0
  285. package/android/build/intermediates/compiled_local_resources/release/out/drawable-fi-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  286. package/android/build/intermediates/compiled_local_resources/release/out/drawable-fi_pay_with_googlepay_button_content.xml.flat +0 -0
  287. package/android/build/intermediates/compiled_local_resources/release/out/drawable-fr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  288. package/android/build/intermediates/compiled_local_resources/release/out/drawable-fr_pay_with_googlepay_button_content.xml.flat +0 -0
  289. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  290. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  291. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  292. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  293. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  294. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  295. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  296. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hr_pay_with_googlepay_button_content.xml.flat +0 -0
  297. package/android/build/intermediates/compiled_local_resources/release/out/drawable-id-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  298. package/android/build/intermediates/compiled_local_resources/release/out/drawable-id_pay_with_googlepay_button_content.xml.flat +0 -0
  299. package/android/build/intermediates/compiled_local_resources/release/out/drawable-it-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  300. package/android/build/intermediates/compiled_local_resources/release/out/drawable-it_pay_with_googlepay_button_content.xml.flat +0 -0
  301. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ja-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  302. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ja_pay_with_googlepay_button_content.xml.flat +0 -0
  303. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ko-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  304. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ko_pay_with_googlepay_button_content.xml.flat +0 -0
  305. package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  306. package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  307. package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  308. package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  309. package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  310. package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  311. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ms-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  312. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ms_pay_with_googlepay_button_content.xml.flat +0 -0
  313. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-hdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  314. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-hdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  315. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-mdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  316. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-mdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  317. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v21_googlepay_button_background.xml.flat +0 -0
  318. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
  319. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v8_googlepay_button_content.xml.flat +0 -0
  320. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v8_googlepay_button_overlay.xml.flat +0 -0
  321. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  322. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  323. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  324. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  325. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  326. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  327. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  328. package/android/build/intermediates/compiled_local_resources/release/out/drawable-nl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  329. package/android/build/intermediates/compiled_local_resources/release/out/drawable-nl_pay_with_googlepay_button_content.xml.flat +0 -0
  330. package/android/build/intermediates/compiled_local_resources/release/out/drawable-no-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  331. package/android/build/intermediates/compiled_local_resources/release/out/drawable-no_pay_with_googlepay_button_content.xml.flat +0 -0
  332. package/android/build/intermediates/compiled_local_resources/release/out/drawable-pl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  333. package/android/build/intermediates/compiled_local_resources/release/out/drawable-pl_pay_with_googlepay_button_content.xml.flat +0 -0
  334. package/android/build/intermediates/compiled_local_resources/release/out/drawable-pt-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  335. package/android/build/intermediates/compiled_local_resources/release/out/drawable-pt_pay_with_googlepay_button_content.xml.flat +0 -0
  336. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ru-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  337. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ru_pay_with_googlepay_button_content.xml.flat +0 -0
  338. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  339. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sk_pay_with_googlepay_button_content.xml.flat +0 -0
  340. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  341. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sl_pay_with_googlepay_button_content.xml.flat +0 -0
  342. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  343. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sr_pay_with_googlepay_button_content.xml.flat +0 -0
  344. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sv-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  345. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sv_pay_with_googlepay_button_content.xml.flat +0 -0
  346. package/android/build/intermediates/compiled_local_resources/release/out/drawable-th-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  347. package/android/build/intermediates/compiled_local_resources/release/out/drawable-th_pay_with_googlepay_button_content.xml.flat +0 -0
  348. package/android/build/intermediates/compiled_local_resources/release/out/drawable-tr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  349. package/android/build/intermediates/compiled_local_resources/release/out/drawable-tr_pay_with_googlepay_button_content.xml.flat +0 -0
  350. package/android/build/intermediates/compiled_local_resources/release/out/drawable-uk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  351. package/android/build/intermediates/compiled_local_resources/release/out/drawable-uk_pay_with_googlepay_button_content.xml.flat +0 -0
  352. package/android/build/intermediates/compiled_local_resources/release/out/drawable-v21_googlepay_button_background.xml.flat +0 -0
  353. package/android/build/intermediates/compiled_local_resources/release/out/drawable-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
  354. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  355. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  356. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  357. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  358. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  359. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  360. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  361. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  362. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  363. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  364. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  365. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  366. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  367. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  368. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  369. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  370. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  371. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  372. package/android/build/intermediates/compiled_local_resources/release/out/drawable-zh_pay_with_googlepay_button_content.xml.flat +0 -0
  373. package/android/build/intermediates/compiled_local_resources/release/out/drawable_googlepay_button_content.xml.flat +0 -0
  374. package/android/build/intermediates/compiled_local_resources/release/out/drawable_googlepay_button_overlay.xml.flat +0 -0
  375. package/android/build/intermediates/compiled_local_resources/release/out/drawable_pay_with_googlepay_button_content.xml.flat +0 -0
  376. package/android/build/intermediates/compiled_local_resources/release/out/layout-night-v8_googlepay_button.xml.flat +0 -0
  377. package/android/build/intermediates/compiled_local_resources/release/out/layout-night-v8_pay_with_googlepay_button.xml.flat +0 -0
  378. package/android/build/intermediates/compiled_local_resources/release/out/layout_googlepay_button.xml.flat +0 -0
  379. package/android/build/intermediates/compiled_local_resources/release/out/layout_googlepay_button_no_shadow.xml.flat +0 -0
  380. package/android/build/intermediates/compiled_local_resources/release/out/layout_pay_with_googlepay_button.xml.flat +0 -0
  381. package/android/build/intermediates/compiled_local_resources/release/out/layout_pay_with_googlepay_button_no_shadow.xml.flat +0 -0
  382. package/android/build/intermediates/data_binding_base_class_log_artifact/debug/out/com.reactnativestripesdk-binding_classes.json +0 -0
  383. package/android/build/intermediates/data_binding_base_class_log_artifact/release/out/com.reactnativestripesdk-binding_classes.json +0 -0
  384. package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/googlepay_button-layout-night.xml +0 -1
  385. package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/googlepay_button-layout.xml +0 -1
  386. package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/googlepay_button_no_shadow-layout.xml +0 -1
  387. package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/pay_with_googlepay_button-layout-night.xml +0 -1
  388. package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/pay_with_googlepay_button-layout.xml +0 -1
  389. package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/pay_with_googlepay_button_no_shadow-layout.xml +0 -1
  390. package/android/build/intermediates/data_binding_layout_info_type_package/release/out/googlepay_button-layout-night.xml +0 -1
  391. package/android/build/intermediates/data_binding_layout_info_type_package/release/out/googlepay_button-layout.xml +0 -1
  392. package/android/build/intermediates/data_binding_layout_info_type_package/release/out/googlepay_button_no_shadow-layout.xml +0 -1
  393. package/android/build/intermediates/data_binding_layout_info_type_package/release/out/pay_with_googlepay_button-layout-night.xml +0 -1
  394. package/android/build/intermediates/data_binding_layout_info_type_package/release/out/pay_with_googlepay_button-layout.xml +0 -1
  395. package/android/build/intermediates/data_binding_layout_info_type_package/release/out/pay_with_googlepay_button_no_shadow-layout.xml +0 -1
  396. package/android/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json +0 -0
  397. package/android/build/intermediates/incremental/dataBindingGenBaseClassesRelease/base_builder_log.json +0 -0
  398. package/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
  399. package/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
  400. package/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml +0 -2
  401. package/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml +0 -2
  402. package/android/build/intermediates/incremental/packageDebugAssets/merger.xml +0 -2
  403. package/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties +0 -116
  404. package/android/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml +0 -12
  405. package/android/build/intermediates/incremental/packageDebugResources/merged.dir/values-night-v8/values-night-v8.xml +0 -12
  406. package/android/build/intermediates/incremental/packageDebugResources/merger.xml +0 -2
  407. package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/googlepay_button.xml +0 -31
  408. package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/googlepay_button_no_shadow.xml +0 -31
  409. package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/pay_with_googlepay_button.xml +0 -31
  410. package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
  411. package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout-night-v8/googlepay_button.xml +0 -31
  412. package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout-night-v8/pay_with_googlepay_button.xml +0 -31
  413. package/android/build/intermediates/incremental/packageReleaseAssets/merger.xml +0 -2
  414. package/android/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties +0 -116
  415. package/android/build/intermediates/incremental/packageReleaseResources/merged.dir/values/values.xml +0 -12
  416. package/android/build/intermediates/incremental/packageReleaseResources/merged.dir/values-night-v8/values-night-v8.xml +0 -12
  417. package/android/build/intermediates/incremental/packageReleaseResources/merger.xml +0 -2
  418. package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/googlepay_button.xml +0 -31
  419. package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/googlepay_button_no_shadow.xml +0 -31
  420. package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/pay_with_googlepay_button.xml +0 -31
  421. package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
  422. package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout-night-v8/googlepay_button.xml +0 -31
  423. package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout-night-v8/pay_with_googlepay_button.xml +0 -31
  424. package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/BuildConfig.class +0 -0
  425. package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/GooglepayButtonBinding.class +0 -0
  426. package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.class +0 -0
  427. package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.class +0 -0
  428. package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.class +0 -0
  429. package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/BuildConfig.class +0 -0
  430. package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/GooglepayButtonBinding.class +0 -0
  431. package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.class +0 -0
  432. package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.class +0 -0
  433. package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.class +0 -0
  434. package/android/build/intermediates/library_java_res/debug/res.jar +0 -0
  435. package/android/build/intermediates/library_java_res/release/res.jar +0 -0
  436. package/android/build/intermediates/local_only_symbol_list/debug/R-def.txt +0 -26
  437. package/android/build/intermediates/local_only_symbol_list/release/R-def.txt +0 -26
  438. package/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +0 -11
  439. package/android/build/intermediates/manifest_merge_blame_file/release/manifest-merger-blame-release-report.txt +0 -11
  440. package/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml +0 -9
  441. package/android/build/intermediates/merged_manifest/release/AndroidManifest.xml +0 -9
  442. package/android/build/intermediates/navigation_json/debug/navigation.json +0 -1
  443. package/android/build/intermediates/navigation_json/release/navigation.json +0 -1
  444. package/android/build/intermediates/packaged_manifests/debug/output-metadata.json +0 -16
  445. package/android/build/intermediates/packaged_manifests/release/output-metadata.json +0 -16
  446. package/android/build/intermediates/packaged_res/debug/drawable/googlepay_button_content.xml +0 -48
  447. package/android/build/intermediates/packaged_res/debug/drawable/googlepay_button_overlay.xml +0 -11
  448. package/android/build/intermediates/packaged_res/debug/drawable/pay_with_googlepay_button_content.xml +0 -14
  449. package/android/build/intermediates/packaged_res/debug/drawable-ar/pay_with_googlepay_button_content.xml +0 -14
  450. package/android/build/intermediates/packaged_res/debug/drawable-ar-night-v8/pay_with_googlepay_button_content.xml +0 -14
  451. package/android/build/intermediates/packaged_res/debug/drawable-bg/pay_with_googlepay_button_content.xml +0 -14
  452. package/android/build/intermediates/packaged_res/debug/drawable-bg-night-v8/pay_with_googlepay_button_content.xml +0 -14
  453. package/android/build/intermediates/packaged_res/debug/drawable-ca/pay_with_googlepay_button_content.xml +0 -14
  454. package/android/build/intermediates/packaged_res/debug/drawable-ca-night-v8/pay_with_googlepay_button_content.xml +0 -14
  455. package/android/build/intermediates/packaged_res/debug/drawable-cs/pay_with_googlepay_button_content.xml +0 -14
  456. package/android/build/intermediates/packaged_res/debug/drawable-cs-night-v8/pay_with_googlepay_button_content.xml +0 -14
  457. package/android/build/intermediates/packaged_res/debug/drawable-da/pay_with_googlepay_button_content.xml +0 -14
  458. package/android/build/intermediates/packaged_res/debug/drawable-da-night-v8/pay_with_googlepay_button_content.xml +0 -14
  459. package/android/build/intermediates/packaged_res/debug/drawable-de/pay_with_googlepay_button_content.xml +0 -15
  460. package/android/build/intermediates/packaged_res/debug/drawable-de-night-v8/pay_with_googlepay_button_content.xml +0 -15
  461. package/android/build/intermediates/packaged_res/debug/drawable-el/pay_with_googlepay_button_content.xml +0 -14
  462. package/android/build/intermediates/packaged_res/debug/drawable-el-night-v8/pay_with_googlepay_button_content.xml +0 -14
  463. package/android/build/intermediates/packaged_res/debug/drawable-es/pay_with_googlepay_button_content.xml +0 -14
  464. package/android/build/intermediates/packaged_res/debug/drawable-es-night-v8/pay_with_googlepay_button_content.xml +0 -14
  465. package/android/build/intermediates/packaged_res/debug/drawable-et/pay_with_googlepay_button_content.xml +0 -14
  466. package/android/build/intermediates/packaged_res/debug/drawable-et-night-v8/pay_with_googlepay_button_content.xml +0 -14
  467. package/android/build/intermediates/packaged_res/debug/drawable-fi/pay_with_googlepay_button_content.xml +0 -15
  468. package/android/build/intermediates/packaged_res/debug/drawable-fi-night-v8/pay_with_googlepay_button_content.xml +0 -15
  469. package/android/build/intermediates/packaged_res/debug/drawable-fr/pay_with_googlepay_button_content.xml +0 -14
  470. package/android/build/intermediates/packaged_res/debug/drawable-fr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  471. package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_background_image.9.png +0 -0
  472. package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  473. package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  474. package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  475. package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  476. package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  477. package/android/build/intermediates/packaged_res/debug/drawable-hr/pay_with_googlepay_button_content.xml +0 -14
  478. package/android/build/intermediates/packaged_res/debug/drawable-hr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  479. package/android/build/intermediates/packaged_res/debug/drawable-id/pay_with_googlepay_button_content.xml +0 -14
  480. package/android/build/intermediates/packaged_res/debug/drawable-id-night-v8/pay_with_googlepay_button_content.xml +0 -14
  481. package/android/build/intermediates/packaged_res/debug/drawable-it/pay_with_googlepay_button_content.xml +0 -14
  482. package/android/build/intermediates/packaged_res/debug/drawable-it-night-v8/pay_with_googlepay_button_content.xml +0 -14
  483. package/android/build/intermediates/packaged_res/debug/drawable-ja/pay_with_googlepay_button_content.xml +0 -14
  484. package/android/build/intermediates/packaged_res/debug/drawable-ja-night-v8/pay_with_googlepay_button_content.xml +0 -14
  485. package/android/build/intermediates/packaged_res/debug/drawable-ko/pay_with_googlepay_button_content.xml +0 -14
  486. package/android/build/intermediates/packaged_res/debug/drawable-ko-night-v8/pay_with_googlepay_button_content.xml +0 -14
  487. package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_background_image.9.png +0 -0
  488. package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  489. package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  490. package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  491. package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  492. package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  493. package/android/build/intermediates/packaged_res/debug/drawable-ms/pay_with_googlepay_button_content.xml +0 -14
  494. package/android/build/intermediates/packaged_res/debug/drawable-ms-night-v8/pay_with_googlepay_button_content.xml +0 -14
  495. package/android/build/intermediates/packaged_res/debug/drawable-night-hdpi-v8/googlepay_button_background_image.9.png +0 -0
  496. package/android/build/intermediates/packaged_res/debug/drawable-night-hdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  497. package/android/build/intermediates/packaged_res/debug/drawable-night-mdpi-v8/googlepay_button_background_image.9.png +0 -0
  498. package/android/build/intermediates/packaged_res/debug/drawable-night-mdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  499. package/android/build/intermediates/packaged_res/debug/drawable-night-v21/googlepay_button_background.xml +0 -7
  500. package/android/build/intermediates/packaged_res/debug/drawable-night-v21/googlepay_button_no_shadow_background.xml +0 -7
  501. package/android/build/intermediates/packaged_res/debug/drawable-night-v8/googlepay_button_content.xml +0 -48
  502. package/android/build/intermediates/packaged_res/debug/drawable-night-v8/googlepay_button_overlay.xml +0 -12
  503. package/android/build/intermediates/packaged_res/debug/drawable-night-v8/pay_with_googlepay_button_content.xml +0 -14
  504. package/android/build/intermediates/packaged_res/debug/drawable-night-xhdpi-v8/googlepay_button_background_image.9.png +0 -0
  505. package/android/build/intermediates/packaged_res/debug/drawable-night-xhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  506. package/android/build/intermediates/packaged_res/debug/drawable-night-xxhdpi-v8/googlepay_button_background_image.9.png +0 -0
  507. package/android/build/intermediates/packaged_res/debug/drawable-night-xxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  508. package/android/build/intermediates/packaged_res/debug/drawable-night-xxxhdpi-v8/googlepay_button_background_image.9.png +0 -0
  509. package/android/build/intermediates/packaged_res/debug/drawable-night-xxxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  510. package/android/build/intermediates/packaged_res/debug/drawable-nl/pay_with_googlepay_button_content.xml +0 -14
  511. package/android/build/intermediates/packaged_res/debug/drawable-nl-night-v8/pay_with_googlepay_button_content.xml +0 -14
  512. package/android/build/intermediates/packaged_res/debug/drawable-no/pay_with_googlepay_button_content.xml +0 -14
  513. package/android/build/intermediates/packaged_res/debug/drawable-no-night-v8/pay_with_googlepay_button_content.xml +0 -14
  514. package/android/build/intermediates/packaged_res/debug/drawable-pl/pay_with_googlepay_button_content.xml +0 -14
  515. package/android/build/intermediates/packaged_res/debug/drawable-pl-night-v8/pay_with_googlepay_button_content.xml +0 -14
  516. package/android/build/intermediates/packaged_res/debug/drawable-pt/pay_with_googlepay_button_content.xml +0 -14
  517. package/android/build/intermediates/packaged_res/debug/drawable-pt-night-v8/pay_with_googlepay_button_content.xml +0 -14
  518. package/android/build/intermediates/packaged_res/debug/drawable-ru/pay_with_googlepay_button_content.xml +0 -14
  519. package/android/build/intermediates/packaged_res/debug/drawable-ru-night-v8/pay_with_googlepay_button_content.xml +0 -14
  520. package/android/build/intermediates/packaged_res/debug/drawable-sk/pay_with_googlepay_button_content.xml +0 -14
  521. package/android/build/intermediates/packaged_res/debug/drawable-sk-night-v8/pay_with_googlepay_button_content.xml +0 -14
  522. package/android/build/intermediates/packaged_res/debug/drawable-sl/pay_with_googlepay_button_content.xml +0 -14
  523. package/android/build/intermediates/packaged_res/debug/drawable-sl-night-v8/pay_with_googlepay_button_content.xml +0 -14
  524. package/android/build/intermediates/packaged_res/debug/drawable-sr/pay_with_googlepay_button_content.xml +0 -14
  525. package/android/build/intermediates/packaged_res/debug/drawable-sr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  526. package/android/build/intermediates/packaged_res/debug/drawable-sv/pay_with_googlepay_button_content.xml +0 -14
  527. package/android/build/intermediates/packaged_res/debug/drawable-sv-night-v8/pay_with_googlepay_button_content.xml +0 -14
  528. package/android/build/intermediates/packaged_res/debug/drawable-th/pay_with_googlepay_button_content.xml +0 -14
  529. package/android/build/intermediates/packaged_res/debug/drawable-th-night-v8/pay_with_googlepay_button_content.xml +0 -14
  530. package/android/build/intermediates/packaged_res/debug/drawable-tr/pay_with_googlepay_button_content.xml +0 -14
  531. package/android/build/intermediates/packaged_res/debug/drawable-tr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  532. package/android/build/intermediates/packaged_res/debug/drawable-uk/pay_with_googlepay_button_content.xml +0 -14
  533. package/android/build/intermediates/packaged_res/debug/drawable-uk-night-v8/pay_with_googlepay_button_content.xml +0 -14
  534. package/android/build/intermediates/packaged_res/debug/drawable-v21/googlepay_button_background.xml +0 -21
  535. package/android/build/intermediates/packaged_res/debug/drawable-v21/googlepay_button_no_shadow_background.xml +0 -21
  536. package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_background_image.9.png +0 -0
  537. package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  538. package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  539. package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  540. package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  541. package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  542. package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_background_image.9.png +0 -0
  543. package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  544. package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  545. package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  546. package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  547. package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  548. package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_background_image.9.png +0 -0
  549. package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  550. package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  551. package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  552. package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  553. package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  554. package/android/build/intermediates/packaged_res/debug/drawable-zh/pay_with_googlepay_button_content.xml +0 -15
  555. package/android/build/intermediates/packaged_res/debug/layout/googlepay_button.xml +0 -31
  556. package/android/build/intermediates/packaged_res/debug/layout/googlepay_button_no_shadow.xml +0 -31
  557. package/android/build/intermediates/packaged_res/debug/layout/pay_with_googlepay_button.xml +0 -31
  558. package/android/build/intermediates/packaged_res/debug/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
  559. package/android/build/intermediates/packaged_res/debug/layout-night-v8/googlepay_button.xml +0 -31
  560. package/android/build/intermediates/packaged_res/debug/layout-night-v8/pay_with_googlepay_button.xml +0 -31
  561. package/android/build/intermediates/packaged_res/debug/values/values.xml +0 -12
  562. package/android/build/intermediates/packaged_res/debug/values-night-v8/values-night-v8.xml +0 -12
  563. package/android/build/intermediates/packaged_res/release/drawable/googlepay_button_content.xml +0 -48
  564. package/android/build/intermediates/packaged_res/release/drawable/googlepay_button_overlay.xml +0 -11
  565. package/android/build/intermediates/packaged_res/release/drawable/pay_with_googlepay_button_content.xml +0 -14
  566. package/android/build/intermediates/packaged_res/release/drawable-ar/pay_with_googlepay_button_content.xml +0 -14
  567. package/android/build/intermediates/packaged_res/release/drawable-ar-night-v8/pay_with_googlepay_button_content.xml +0 -14
  568. package/android/build/intermediates/packaged_res/release/drawable-bg/pay_with_googlepay_button_content.xml +0 -14
  569. package/android/build/intermediates/packaged_res/release/drawable-bg-night-v8/pay_with_googlepay_button_content.xml +0 -14
  570. package/android/build/intermediates/packaged_res/release/drawable-ca/pay_with_googlepay_button_content.xml +0 -14
  571. package/android/build/intermediates/packaged_res/release/drawable-ca-night-v8/pay_with_googlepay_button_content.xml +0 -14
  572. package/android/build/intermediates/packaged_res/release/drawable-cs/pay_with_googlepay_button_content.xml +0 -14
  573. package/android/build/intermediates/packaged_res/release/drawable-cs-night-v8/pay_with_googlepay_button_content.xml +0 -14
  574. package/android/build/intermediates/packaged_res/release/drawable-da/pay_with_googlepay_button_content.xml +0 -14
  575. package/android/build/intermediates/packaged_res/release/drawable-da-night-v8/pay_with_googlepay_button_content.xml +0 -14
  576. package/android/build/intermediates/packaged_res/release/drawable-de/pay_with_googlepay_button_content.xml +0 -15
  577. package/android/build/intermediates/packaged_res/release/drawable-de-night-v8/pay_with_googlepay_button_content.xml +0 -15
  578. package/android/build/intermediates/packaged_res/release/drawable-el/pay_with_googlepay_button_content.xml +0 -14
  579. package/android/build/intermediates/packaged_res/release/drawable-el-night-v8/pay_with_googlepay_button_content.xml +0 -14
  580. package/android/build/intermediates/packaged_res/release/drawable-es/pay_with_googlepay_button_content.xml +0 -14
  581. package/android/build/intermediates/packaged_res/release/drawable-es-night-v8/pay_with_googlepay_button_content.xml +0 -14
  582. package/android/build/intermediates/packaged_res/release/drawable-et/pay_with_googlepay_button_content.xml +0 -14
  583. package/android/build/intermediates/packaged_res/release/drawable-et-night-v8/pay_with_googlepay_button_content.xml +0 -14
  584. package/android/build/intermediates/packaged_res/release/drawable-fi/pay_with_googlepay_button_content.xml +0 -15
  585. package/android/build/intermediates/packaged_res/release/drawable-fi-night-v8/pay_with_googlepay_button_content.xml +0 -15
  586. package/android/build/intermediates/packaged_res/release/drawable-fr/pay_with_googlepay_button_content.xml +0 -14
  587. package/android/build/intermediates/packaged_res/release/drawable-fr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  588. package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_background_image.9.png +0 -0
  589. package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  590. package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  591. package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  592. package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  593. package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  594. package/android/build/intermediates/packaged_res/release/drawable-hr/pay_with_googlepay_button_content.xml +0 -14
  595. package/android/build/intermediates/packaged_res/release/drawable-hr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  596. package/android/build/intermediates/packaged_res/release/drawable-id/pay_with_googlepay_button_content.xml +0 -14
  597. package/android/build/intermediates/packaged_res/release/drawable-id-night-v8/pay_with_googlepay_button_content.xml +0 -14
  598. package/android/build/intermediates/packaged_res/release/drawable-it/pay_with_googlepay_button_content.xml +0 -14
  599. package/android/build/intermediates/packaged_res/release/drawable-it-night-v8/pay_with_googlepay_button_content.xml +0 -14
  600. package/android/build/intermediates/packaged_res/release/drawable-ja/pay_with_googlepay_button_content.xml +0 -14
  601. package/android/build/intermediates/packaged_res/release/drawable-ja-night-v8/pay_with_googlepay_button_content.xml +0 -14
  602. package/android/build/intermediates/packaged_res/release/drawable-ko/pay_with_googlepay_button_content.xml +0 -14
  603. package/android/build/intermediates/packaged_res/release/drawable-ko-night-v8/pay_with_googlepay_button_content.xml +0 -14
  604. package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_background_image.9.png +0 -0
  605. package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  606. package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  607. package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  608. package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  609. package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  610. package/android/build/intermediates/packaged_res/release/drawable-ms/pay_with_googlepay_button_content.xml +0 -14
  611. package/android/build/intermediates/packaged_res/release/drawable-ms-night-v8/pay_with_googlepay_button_content.xml +0 -14
  612. package/android/build/intermediates/packaged_res/release/drawable-night-hdpi-v8/googlepay_button_background_image.9.png +0 -0
  613. package/android/build/intermediates/packaged_res/release/drawable-night-hdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  614. package/android/build/intermediates/packaged_res/release/drawable-night-mdpi-v8/googlepay_button_background_image.9.png +0 -0
  615. package/android/build/intermediates/packaged_res/release/drawable-night-mdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  616. package/android/build/intermediates/packaged_res/release/drawable-night-v21/googlepay_button_background.xml +0 -7
  617. package/android/build/intermediates/packaged_res/release/drawable-night-v21/googlepay_button_no_shadow_background.xml +0 -7
  618. package/android/build/intermediates/packaged_res/release/drawable-night-v8/googlepay_button_content.xml +0 -48
  619. package/android/build/intermediates/packaged_res/release/drawable-night-v8/googlepay_button_overlay.xml +0 -12
  620. package/android/build/intermediates/packaged_res/release/drawable-night-v8/pay_with_googlepay_button_content.xml +0 -14
  621. package/android/build/intermediates/packaged_res/release/drawable-night-xhdpi-v8/googlepay_button_background_image.9.png +0 -0
  622. package/android/build/intermediates/packaged_res/release/drawable-night-xhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  623. package/android/build/intermediates/packaged_res/release/drawable-night-xxhdpi-v8/googlepay_button_background_image.9.png +0 -0
  624. package/android/build/intermediates/packaged_res/release/drawable-night-xxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  625. package/android/build/intermediates/packaged_res/release/drawable-night-xxxhdpi-v8/googlepay_button_background_image.9.png +0 -0
  626. package/android/build/intermediates/packaged_res/release/drawable-night-xxxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  627. package/android/build/intermediates/packaged_res/release/drawable-nl/pay_with_googlepay_button_content.xml +0 -14
  628. package/android/build/intermediates/packaged_res/release/drawable-nl-night-v8/pay_with_googlepay_button_content.xml +0 -14
  629. package/android/build/intermediates/packaged_res/release/drawable-no/pay_with_googlepay_button_content.xml +0 -14
  630. package/android/build/intermediates/packaged_res/release/drawable-no-night-v8/pay_with_googlepay_button_content.xml +0 -14
  631. package/android/build/intermediates/packaged_res/release/drawable-pl/pay_with_googlepay_button_content.xml +0 -14
  632. package/android/build/intermediates/packaged_res/release/drawable-pl-night-v8/pay_with_googlepay_button_content.xml +0 -14
  633. package/android/build/intermediates/packaged_res/release/drawable-pt/pay_with_googlepay_button_content.xml +0 -14
  634. package/android/build/intermediates/packaged_res/release/drawable-pt-night-v8/pay_with_googlepay_button_content.xml +0 -14
  635. package/android/build/intermediates/packaged_res/release/drawable-ru/pay_with_googlepay_button_content.xml +0 -14
  636. package/android/build/intermediates/packaged_res/release/drawable-ru-night-v8/pay_with_googlepay_button_content.xml +0 -14
  637. package/android/build/intermediates/packaged_res/release/drawable-sk/pay_with_googlepay_button_content.xml +0 -14
  638. package/android/build/intermediates/packaged_res/release/drawable-sk-night-v8/pay_with_googlepay_button_content.xml +0 -14
  639. package/android/build/intermediates/packaged_res/release/drawable-sl/pay_with_googlepay_button_content.xml +0 -14
  640. package/android/build/intermediates/packaged_res/release/drawable-sl-night-v8/pay_with_googlepay_button_content.xml +0 -14
  641. package/android/build/intermediates/packaged_res/release/drawable-sr/pay_with_googlepay_button_content.xml +0 -14
  642. package/android/build/intermediates/packaged_res/release/drawable-sr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  643. package/android/build/intermediates/packaged_res/release/drawable-sv/pay_with_googlepay_button_content.xml +0 -14
  644. package/android/build/intermediates/packaged_res/release/drawable-sv-night-v8/pay_with_googlepay_button_content.xml +0 -14
  645. package/android/build/intermediates/packaged_res/release/drawable-th/pay_with_googlepay_button_content.xml +0 -14
  646. package/android/build/intermediates/packaged_res/release/drawable-th-night-v8/pay_with_googlepay_button_content.xml +0 -14
  647. package/android/build/intermediates/packaged_res/release/drawable-tr/pay_with_googlepay_button_content.xml +0 -14
  648. package/android/build/intermediates/packaged_res/release/drawable-tr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  649. package/android/build/intermediates/packaged_res/release/drawable-uk/pay_with_googlepay_button_content.xml +0 -14
  650. package/android/build/intermediates/packaged_res/release/drawable-uk-night-v8/pay_with_googlepay_button_content.xml +0 -14
  651. package/android/build/intermediates/packaged_res/release/drawable-v21/googlepay_button_background.xml +0 -21
  652. package/android/build/intermediates/packaged_res/release/drawable-v21/googlepay_button_no_shadow_background.xml +0 -21
  653. package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_background_image.9.png +0 -0
  654. package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  655. package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  656. package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  657. package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  658. package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  659. package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_background_image.9.png +0 -0
  660. package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  661. package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  662. package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  663. package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  664. package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  665. package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_background_image.9.png +0 -0
  666. package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  667. package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  668. package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  669. package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  670. package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  671. package/android/build/intermediates/packaged_res/release/drawable-zh/pay_with_googlepay_button_content.xml +0 -15
  672. package/android/build/intermediates/packaged_res/release/layout/googlepay_button.xml +0 -31
  673. package/android/build/intermediates/packaged_res/release/layout/googlepay_button_no_shadow.xml +0 -31
  674. package/android/build/intermediates/packaged_res/release/layout/pay_with_googlepay_button.xml +0 -31
  675. package/android/build/intermediates/packaged_res/release/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
  676. package/android/build/intermediates/packaged_res/release/layout-night-v8/googlepay_button.xml +0 -31
  677. package/android/build/intermediates/packaged_res/release/layout-night-v8/pay_with_googlepay_button.xml +0 -31
  678. package/android/build/intermediates/packaged_res/release/values/values.xml +0 -12
  679. package/android/build/intermediates/packaged_res/release/values-night-v8/values-night-v8.xml +0 -12
  680. package/android/build/intermediates/runtime_library_classes_jar/debug/classes.jar +0 -0
  681. package/android/build/intermediates/runtime_library_classes_jar/release/classes.jar +0 -0
  682. package/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt +0 -5671
  683. package/android/build/intermediates/symbol_list_with_package_name/release/package-aware-r.txt +0 -5671
  684. package/android/build/kotlin/compileDebugKotlin/build-history.bin +0 -0
  685. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab +0 -0
  686. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream +0 -0
  687. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len +0 -0
  688. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len +0 -0
  689. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at +0 -0
  690. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i +0 -0
  691. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len +0 -0
  692. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab +0 -0
  693. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +0 -0
  694. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +0 -0
  695. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len +0 -0
  696. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +0 -0
  697. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i +0 -0
  698. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +0 -0
  699. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +0 -0
  700. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +0 -0
  701. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +0 -0
  702. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +0 -0
  703. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +0 -0
  704. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +0 -0
  705. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +0 -0
  706. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab +0 -0
  707. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream +0 -0
  708. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len +0 -0
  709. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len +0 -0
  710. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at +0 -0
  711. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i +0 -0
  712. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len +0 -0
  713. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab +0 -0
  714. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +0 -0
  715. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +0 -0
  716. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +0 -0
  717. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +0 -0
  718. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +0 -0
  719. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +0 -0
  720. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab +0 -0
  721. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream +0 -0
  722. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +0 -0
  723. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len +0 -0
  724. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at +0 -0
  725. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i +0 -0
  726. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len +0 -0
  727. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab +0 -0
  728. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream +0 -0
  729. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len +0 -0
  730. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len +0 -0
  731. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at +0 -0
  732. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i +0 -0
  733. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len +0 -0
  734. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab +0 -0
  735. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +0 -0
  736. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +0 -0
  737. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len +0 -0
  738. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +0 -0
  739. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i +0 -0
  740. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +0 -0
  741. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab +0 -0
  742. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream +0 -0
  743. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +0 -0
  744. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len +0 -0
  745. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at +0 -0
  746. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i +0 -0
  747. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len +0 -0
  748. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab +0 -0
  749. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream +0 -0
  750. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +0 -0
  751. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len +0 -0
  752. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at +0 -0
  753. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i +0 -0
  754. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len +0 -0
  755. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab +0 -2
  756. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab +0 -0
  757. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream +0 -0
  758. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len +0 -0
  759. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len +0 -0
  760. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at +0 -0
  761. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i +0 -0
  762. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len +0 -0
  763. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab +0 -0
  764. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream +0 -0
  765. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len +0 -0
  766. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len +0 -0
  767. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at +0 -0
  768. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i +0 -0
  769. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len +0 -0
  770. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab +0 -0
  771. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream +0 -0
  772. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len +0 -0
  773. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len +0 -0
  774. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values +0 -0
  775. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at +0 -0
  776. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.s +0 -1
  777. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i +0 -0
  778. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len +0 -0
  779. package/android/build/kotlin/compileDebugKotlin/last-build.bin +0 -0
  780. package/android/build/kotlin/compileReleaseKotlin/build-history.bin +0 -0
  781. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab +0 -0
  782. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream +0 -0
  783. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len +0 -0
  784. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.len +0 -0
  785. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.values.at +0 -0
  786. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i +0 -0
  787. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i.len +0 -0
  788. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab +0 -0
  789. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +0 -0
  790. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +0 -0
  791. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len +0 -0
  792. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +0 -0
  793. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i +0 -0
  794. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +0 -0
  795. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +0 -0
  796. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +0 -0
  797. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +0 -0
  798. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +0 -0
  799. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +0 -0
  800. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +0 -0
  801. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +0 -0
  802. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab +0 -0
  803. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream +0 -0
  804. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len +0 -0
  805. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.len +0 -0
  806. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at +0 -0
  807. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i +0 -0
  808. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len +0 -0
  809. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab +0 -0
  810. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +0 -0
  811. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +0 -0
  812. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +0 -0
  813. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +0 -0
  814. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +0 -0
  815. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +0 -0
  816. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab +0 -0
  817. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream +0 -0
  818. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +0 -0
  819. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len +0 -0
  820. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at +0 -0
  821. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i +0 -0
  822. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len +0 -0
  823. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab +0 -0
  824. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream +0 -0
  825. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len +0 -0
  826. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.len +0 -0
  827. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at +0 -0
  828. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i +0 -0
  829. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len +0 -0
  830. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab +0 -0
  831. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +0 -0
  832. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +0 -0
  833. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len +0 -0
  834. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +0 -0
  835. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i +0 -0
  836. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +0 -0
  837. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab +0 -0
  838. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream +0 -0
  839. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +0 -0
  840. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len +0 -0
  841. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at +0 -0
  842. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i +0 -0
  843. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len +0 -0
  844. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab +0 -0
  845. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream +0 -0
  846. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +0 -0
  847. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len +0 -0
  848. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at +0 -0
  849. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i +0 -0
  850. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len +0 -0
  851. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/counters.tab +0 -2
  852. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab +0 -0
  853. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream +0 -0
  854. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len +0 -0
  855. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.len +0 -0
  856. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.values.at +0 -0
  857. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i +0 -0
  858. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i.len +0 -0
  859. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab +0 -0
  860. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream +0 -0
  861. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len +0 -0
  862. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.len +0 -0
  863. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.values.at +0 -0
  864. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i +0 -0
  865. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i.len +0 -0
  866. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab +0 -0
  867. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream +0 -0
  868. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream.len +0 -0
  869. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.len +0 -0
  870. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values +0 -0
  871. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values.at +0 -0
  872. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values.s +0 -1
  873. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i +0 -0
  874. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i.len +0 -0
  875. package/android/build/kotlin/compileReleaseKotlin/last-build.bin +0 -0
  876. package/android/build/outputs/logs/manifest-merger-debug-report.txt +0 -25
  877. package/android/build/outputs/logs/manifest-merger-release-report.txt +0 -25
  878. package/android/build/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt +0 -10
  879. package/android/build/tmp/compileReleaseJavaWithJavac/source-classes-mapping.txt +0 -10
  880. package/android/build/tmp/kotlin-classes/debug/META-INF/reactnativestripesdk_debug.kotlin_module +0 -0
  881. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/AuBECSDebitFormView$setListeners$1.class +0 -0
  882. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/AuBECSDebitFormView.class +0 -0
  883. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/AuBECSDebitFormViewManager.class +0 -0
  884. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardChangedEvent$Companion.class +0 -0
  885. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardChangedEvent.class +0 -0
  886. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$10.class +0 -0
  887. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$6.class +0 -0
  888. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$7.class +0 -0
  889. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$8.class +0 -0
  890. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$9.class +0 -0
  891. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView.class +0 -0
  892. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldViewManager.class +0 -0
  893. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFocusEvent$Companion.class +0 -0
  894. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFocusEvent.class +0 -0
  895. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormCompleteEvent$Companion.class +0 -0
  896. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormCompleteEvent.class +0 -0
  897. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormView.class +0 -0
  898. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormViewManager.class +0 -0
  899. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CollectBankAccountLauncherFragment$createBankAccountLauncher$1.class +0 -0
  900. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CollectBankAccountLauncherFragment.class +0 -0
  901. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ConfirmPaymentErrorType.class +0 -0
  902. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ConfirmSetupIntentErrorType.class +0 -0
  903. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ConstantsKt.class +0 -0
  904. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CreateTokenErrorType.class +0 -0
  905. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ErrorType.class +0 -0
  906. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ErrorsKt.class +0 -0
  907. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ExtensionsKt.class +0 -0
  908. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/FormCompleteEvent$Companion.class +0 -0
  909. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/FormCompleteEvent.class +0 -0
  910. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayButtonManager$Companion.class +0 -0
  911. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayButtonManager.class +0 -0
  912. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayButtonView.class +0 -0
  913. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayErrorType.class +0 -0
  914. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$1.class +0 -0
  915. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$2.class +0 -0
  916. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$3.class +0 -0
  917. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$4.class +0 -0
  918. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment.class +0 -0
  919. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayPaymentMethodLauncherFragment.class +0 -0
  920. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/MappersKt$WhenMappings.class +0 -0
  921. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/MappersKt.class +0 -0
  922. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$WhenMappings.class +0 -0
  923. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1$WhenMappings.class +0 -0
  924. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1.class +0 -0
  925. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$retrieveSetupIntent$1$WhenMappings.class +0 -0
  926. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$retrieveSetupIntent$1.class +0 -0
  927. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment.class +0 -0
  928. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentMethodCreateParamsException.class +0 -0
  929. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentMethodCreateParamsFactory$WhenMappings.class +0 -0
  930. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentMethodCreateParamsFactory.class +0 -0
  931. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentSheetErrorType.class +0 -0
  932. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentSheetFragment.class +0 -0
  933. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentSheetFragmentKt.class +0 -0
  934. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/RetrievePaymentIntentErrorType.class +0 -0
  935. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/RetrieveSetupIntentErrorType.class +0 -0
  936. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeContainerManager.class +0 -0
  937. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeContainerView.class +0 -0
  938. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$Companion.class +0 -0
  939. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createPaymentMethod$1.class +0 -0
  940. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createTokenForCVCUpdate$1.class +0 -0
  941. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createTokenFromBankAccount$1.class +0 -0
  942. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createTokenFromCard$1.class +0 -0
  943. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$googlePayReceiver$1.class +0 -0
  944. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1.class +0 -0
  945. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$mPaymentSheetReceiver$1.class +0 -0
  946. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$retrievePaymentIntent$1.class +0 -0
  947. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$retrieveSetupIntent$1.class +0 -0
  948. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$verifyMicrodeposits$paymentCallback$1.class +0 -0
  949. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$verifyMicrodeposits$setupCallback$1.class +0 -0
  950. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule.class +0 -0
  951. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkPackage.class +0 -0
  952. package/android/build/tmp/kotlin-classes/release/META-INF/reactnativestripesdk_release.kotlin_module +0 -0
  953. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/AuBECSDebitFormView$setListeners$1.class +0 -0
  954. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/AuBECSDebitFormView.class +0 -0
  955. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/AuBECSDebitFormViewManager.class +0 -0
  956. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardChangedEvent$Companion.class +0 -0
  957. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardChangedEvent.class +0 -0
  958. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$10.class +0 -0
  959. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$6.class +0 -0
  960. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$7.class +0 -0
  961. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$8.class +0 -0
  962. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$9.class +0 -0
  963. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView.class +0 -0
  964. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldViewManager.class +0 -0
  965. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFocusEvent$Companion.class +0 -0
  966. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFocusEvent.class +0 -0
  967. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormCompleteEvent$Companion.class +0 -0
  968. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormCompleteEvent.class +0 -0
  969. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormView.class +0 -0
  970. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormViewManager.class +0 -0
  971. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CollectBankAccountLauncherFragment$createBankAccountLauncher$1.class +0 -0
  972. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CollectBankAccountLauncherFragment.class +0 -0
  973. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ConfirmPaymentErrorType.class +0 -0
  974. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ConfirmSetupIntentErrorType.class +0 -0
  975. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ConstantsKt.class +0 -0
  976. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CreateTokenErrorType.class +0 -0
  977. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ErrorType.class +0 -0
  978. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ErrorsKt.class +0 -0
  979. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ExtensionsKt.class +0 -0
  980. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/FormCompleteEvent$Companion.class +0 -0
  981. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/FormCompleteEvent.class +0 -0
  982. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayButtonManager$Companion.class +0 -0
  983. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayButtonManager.class +0 -0
  984. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayButtonView.class +0 -0
  985. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayErrorType.class +0 -0
  986. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$1.class +0 -0
  987. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$2.class +0 -0
  988. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$3.class +0 -0
  989. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$4.class +0 -0
  990. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment.class +0 -0
  991. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayPaymentMethodLauncherFragment.class +0 -0
  992. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/MappersKt$WhenMappings.class +0 -0
  993. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/MappersKt.class +0 -0
  994. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$WhenMappings.class +0 -0
  995. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1$WhenMappings.class +0 -0
  996. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1.class +0 -0
  997. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$retrieveSetupIntent$1$WhenMappings.class +0 -0
  998. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$retrieveSetupIntent$1.class +0 -0
  999. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment.class +0 -0
  1000. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentMethodCreateParamsException.class +0 -0
  1001. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentMethodCreateParamsFactory$WhenMappings.class +0 -0
  1002. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentMethodCreateParamsFactory.class +0 -0
  1003. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentSheetErrorType.class +0 -0
  1004. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentSheetFragment.class +0 -0
  1005. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentSheetFragmentKt.class +0 -0
  1006. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/RetrievePaymentIntentErrorType.class +0 -0
  1007. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/RetrieveSetupIntentErrorType.class +0 -0
  1008. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeContainerManager.class +0 -0
  1009. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeContainerView.class +0 -0
  1010. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$Companion.class +0 -0
  1011. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createPaymentMethod$1.class +0 -0
  1012. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createTokenForCVCUpdate$1.class +0 -0
  1013. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createTokenFromBankAccount$1.class +0 -0
  1014. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createTokenFromCard$1.class +0 -0
  1015. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$googlePayReceiver$1.class +0 -0
  1016. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1.class +0 -0
  1017. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$mPaymentSheetReceiver$1.class +0 -0
  1018. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$retrievePaymentIntent$1.class +0 -0
  1019. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$retrieveSetupIntent$1.class +0 -0
  1020. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$verifyMicrodeposits$paymentCallback$1.class +0 -0
  1021. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$verifyMicrodeposits$setupCallback$1.class +0 -0
  1022. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule.class +0 -0
  1023. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkPackage.class +0 -0
  1024. 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.7.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.14.0",
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.66.4",
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": "^3.0.5"
156
+ "@expo/config-plugins": "^4.1.4"
158
157
  }
159
158
  }
@@ -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
- placeholder?: CardFieldInput.Placeholders;
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
- placeholder,
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
- placeholder={{
190
- number: placeholder?.number,
191
- expiration: placeholder?.expiration,
192
- cvc: placeholder?.cvc,
193
- postalCode: placeholder?.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
- // props iOS only
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
- // TODO: will make it public when ios-sdk allows for this
44
- // placeholder: CardFormView.Placeholders;
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
- // placeholder,
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
- // placeholder={{
173
- // number: placeholder?.number,
174
- // expiration: placeholder?.expiration,
175
- // cvc: placeholder?.cvc,
176
- // postalCode: placeholder?.postalCode,
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
- type: Type;
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
- | (BaseParams & {
59
- type: 'Card';
60
- token?: string;
61
- setupFutureUsage?: FutureUsage;
62
- })
63
- | (BaseParams & {
64
- type: 'Card';
65
- paymentMethodId: string;
66
- cvc?: string;
67
- });
68
-
69
- export interface IdealParams extends BaseParams {
70
- type: 'Ideal';
71
- bankName?: string;
72
- setupFutureUsage?: FutureUsage;
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
- type: 'Fpx';
77
- testOfflineBank?: boolean;
83
+ paymentMethodType: 'Fpx';
84
+ paymentMethodData?: { testOfflineBank?: boolean };
78
85
  }
79
86
 
80
87
  export interface AlipayParams {
81
- type: 'Alipay';
88
+ paymentMethodType: 'Alipay';
82
89
  }
83
90
 
84
- export interface OxxoParams extends Required<BaseParams> {
85
- type: 'Oxxo';
91
+ export interface OxxoParams {
92
+ paymentMethodType: 'Oxxo';
93
+ paymentMethodData: {
94
+ billingDetails: BillingDetails;
95
+ };
86
96
  }
87
97
 
88
- export interface SofortParams extends BaseParams {
89
- type: 'Sofort';
90
- country: string;
91
- setupFutureUsage?: FutureUsage;
98
+ export interface SofortParams {
99
+ paymentMethodType: 'Sofort';
100
+ paymentMethodData: {
101
+ country: string;
102
+ billingDetails: BillingDetails;
103
+ };
92
104
  }
93
- export interface GrabPayParams extends BaseParams {
94
- type: 'GrabPay';
105
+ export interface GrabPayParams {
106
+ paymentMethodType: 'GrabPay';
107
+ paymentMethodData?: {
108
+ billingDetails?: BillingDetails;
109
+ };
95
110
  }
96
111
 
97
- export interface BancontactParams extends Required<BaseParams> {
98
- type: 'Bancontact';
99
- setupFutureUsage?: FutureUsage;
112
+ export interface BancontactParams {
113
+ paymentMethodType: 'Bancontact';
114
+ paymentMethodData: {
115
+ billingDetails: BillingDetails;
116
+ };
100
117
  }
101
118
 
102
- export interface SepaParams extends Required<BaseParams> {
103
- type: 'SepaDebit';
104
- iban: string;
105
- setupFutureUsage?: FutureUsage;
119
+ export interface SepaParams {
120
+ paymentMethodType: 'SepaDebit';
121
+ paymentMethodData: {
122
+ iban: string;
123
+ billingDetails: BillingDetails;
124
+ };
106
125
  }
107
126
 
108
- export interface GiropayParams extends Required<BaseParams> {
109
- type: 'Giropay';
127
+ export interface GiropayParams {
128
+ paymentMethodType: 'Giropay';
129
+ paymentMethodData: {
130
+ billingDetails: BillingDetails;
131
+ };
110
132
  }
111
133
 
112
- export interface AfterpayClearpayParams extends Required<BaseParams> {
113
- type: 'AfterpayClearpay';
114
- shippingDetails: ShippingDetails;
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
- type: 'Klarna';
119
- billingDetails: Pick<Required<BillingDetails>, 'email'> & {
120
- address: Pick<Required<Address>, 'country'>;
121
- } & BillingDetails;
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 extends Required<BaseParams> {
125
- type: 'Eps';
151
+ export interface EpsParams {
152
+ paymentMethodType: 'Eps';
153
+ paymentMethodData: {
154
+ billingDetails: BillingDetails;
155
+ };
126
156
  }
127
157
 
128
- export interface P24Params extends Required<BaseParams> {
129
- type: 'P24';
158
+ export interface P24Params {
159
+ paymentMethodType: 'P24';
160
+ paymentMethodData: {
161
+ billingDetails: BillingDetails;
162
+ };
130
163
  }
131
164
 
132
- export interface WeChatPayParams extends BaseParams {
133
- type: 'WeChatPay';
134
- appId: string;
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
- type: 'AuBecsDebit';
139
- formDetails: FormDetails;
174
+ paymentMethodType: 'AuBecsDebit';
175
+ paymentMethodData: { formDetails: FormDetails };
140
176
  }
141
177
 
142
- /** Before using this payment method type, ensure you have already collected the bank information
143
- * for this intent with `collectBankAccountForPayment`. Otherwise, you will need to pass in the bank account
144
- * details manually.*/
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
- type: 'USBankAccount';
147
- billingDetails?: Pick<Required<BillingDetails>, 'name'> & BillingDetails;
148
- accountNumber?: string;
149
- routingNumber?: string;
150
- /** Defaults to Individual */
151
- accountHolderType?: BankAcccountHolderType;
152
- /** Defaults to Checking */
153
- accountType?: BankAcccountType;
154
- setupFutureUsage?: FutureUsage;
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
- type: 'USBankAccount';
238
- billingDetails: {
239
- name: string;
240
- email?: string;
283
+ paymentMethodType: 'USBankAccount';
284
+ paymentMethodData: {
285
+ billingDetails: {
286
+ name: string;
287
+ email?: string;
288
+ };
241
289
  };
242
290
  };
@@ -16,9 +16,26 @@ export interface Result {
16
16
  nextAction: NextAction | null;
17
17
  }
18
18
 
19
- export type ConfirmParams = PaymentMethod.CreateParams;
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 = PaymentMethod.ConfirmOptions;
38
+ export type ConfirmOptions = {};
22
39
 
23
40
  export type FutureUsage =
24
41
  | 'Unknown'