@stripe/stripe-react-native 0.6.0 → 0.9.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 (1143) hide show
  1. package/CHANGELOG.md +71 -0
  2. package/README.md +4 -4
  3. package/android/build.gradle +11 -2
  4. package/android/gradle.properties +1 -0
  5. package/android/src/main/java/com/reactnativestripesdk/AuBECSDebitFormViewManager.kt +0 -2
  6. package/android/src/main/java/com/reactnativestripesdk/CardChangedEvent.kt +1 -0
  7. package/android/src/main/java/com/reactnativestripesdk/CardFieldView.kt +51 -34
  8. package/android/src/main/java/com/reactnativestripesdk/CardFieldViewManager.kt +3 -8
  9. package/android/src/main/java/com/reactnativestripesdk/CardFormCompleteEvent.kt +1 -0
  10. package/android/src/main/java/com/reactnativestripesdk/CardFormView.kt +99 -29
  11. package/android/src/main/java/com/reactnativestripesdk/CardFormViewManager.kt +4 -8
  12. package/android/src/main/java/com/reactnativestripesdk/CollectBankAccountLauncherFragment.kt +84 -0
  13. package/android/src/main/java/com/reactnativestripesdk/Constants.kt +0 -1
  14. package/android/src/main/java/com/reactnativestripesdk/Errors.kt +16 -6
  15. package/android/src/main/java/com/reactnativestripesdk/GooglePayButtonManager.kt +0 -1
  16. package/android/src/main/java/com/reactnativestripesdk/GooglePayFragment.kt +0 -3
  17. package/android/src/main/java/com/reactnativestripesdk/GooglePayPaymentMethodLauncherFragment.kt +3 -2
  18. package/android/src/main/java/com/reactnativestripesdk/Mappers.kt +94 -55
  19. package/android/src/main/java/com/reactnativestripesdk/PaymentLauncherFragment.kt +77 -22
  20. package/android/src/main/java/com/reactnativestripesdk/PaymentMethodCreateParamsFactory.kt +148 -32
  21. package/android/src/main/java/com/reactnativestripesdk/StripeContainerManager.kt +0 -1
  22. package/android/src/main/java/com/reactnativestripesdk/StripeSdkModule.kt +251 -120
  23. package/android/src/main/java/com/reactnativestripesdk/StripeSdkPackage.kt +9 -1
  24. package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/AddToWalletButtonManager.kt +55 -0
  25. package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/AddToWalletButtonView.kt +148 -0
  26. package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/AddToWalletCompleteEvent.kt +22 -0
  27. package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/EphemeralKeyProvider.kt +35 -0
  28. package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/PushProvisioningProxy.kt +117 -0
  29. package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/TapAndPayProxy.kt +129 -0
  30. package/ios/CardFieldManager.m +1 -1
  31. package/ios/CardFieldView.swift +7 -6
  32. package/ios/CardFormView.swift +2 -1
  33. package/ios/Mappers.swift +55 -22
  34. package/ios/PaymentMethodFactory.swift +28 -17
  35. package/ios/StripeSdk.m +7 -2
  36. package/ios/StripeSdk.swift +90 -58
  37. package/ios/pushprovisioning/AddToWalletButtonManager.m +18 -0
  38. package/ios/pushprovisioning/AddToWalletButtonManager.swift +19 -0
  39. package/ios/pushprovisioning/AddToWalletButtonView.swift +145 -0
  40. package/lib/commonjs/NativeStripeSdk.js.map +1 -1
  41. package/lib/commonjs/components/AddToWalletButton.js +2 -0
  42. package/lib/commonjs/components/AddToWalletButton.js.map +1 -0
  43. package/lib/commonjs/components/ApplePayButton.js +1 -1
  44. package/lib/commonjs/components/ApplePayButton.js.map +1 -1
  45. package/lib/commonjs/components/AuBECSDebitForm.js +1 -1
  46. package/lib/commonjs/components/AuBECSDebitForm.js.map +1 -1
  47. package/lib/commonjs/components/CardField.js +1 -1
  48. package/lib/commonjs/components/CardField.js.map +1 -1
  49. package/lib/commonjs/components/CardForm.js +1 -1
  50. package/lib/commonjs/components/CardForm.js.map +1 -1
  51. package/lib/commonjs/components/GooglePayButton.js +1 -1
  52. package/lib/commonjs/components/GooglePayButton.js.map +1 -1
  53. package/lib/commonjs/components/StripeContainer.js +1 -1
  54. package/lib/commonjs/components/StripeContainer.js.map +1 -1
  55. package/lib/commonjs/components/StripeProvider.js +1 -1
  56. package/lib/commonjs/components/StripeProvider.js.map +1 -1
  57. package/lib/commonjs/functions.js +1 -1
  58. package/lib/commonjs/functions.js.map +1 -1
  59. package/lib/commonjs/helpers.js.map +1 -1
  60. package/lib/commonjs/hooks/useConfirmPayment.js.map +1 -1
  61. package/lib/commonjs/hooks/useConfirmSetupIntent.js.map +1 -1
  62. package/lib/commonjs/hooks/useGooglePay.js.map +1 -1
  63. package/lib/commonjs/hooks/useStripe.js +1 -1
  64. package/lib/commonjs/hooks/useStripe.js.map +1 -1
  65. package/lib/commonjs/index.js +1 -1
  66. package/lib/commonjs/index.js.map +1 -1
  67. package/lib/commonjs/types/ApplePay.js +1 -1
  68. package/lib/commonjs/types/ApplePay.js.map +1 -1
  69. package/lib/commonjs/types/Common.js +2 -0
  70. package/lib/commonjs/types/Common.js.map +1 -0
  71. package/lib/commonjs/types/Errors.js +1 -1
  72. package/lib/commonjs/types/Errors.js.map +1 -1
  73. package/lib/commonjs/types/GooglePay.js +1 -1
  74. package/lib/commonjs/types/GooglePay.js.map +1 -1
  75. package/lib/commonjs/types/PaymentIntent.js +2 -0
  76. package/lib/commonjs/types/PaymentIntent.js.map +1 -0
  77. package/lib/commonjs/types/PaymentMethod.js +2 -0
  78. package/lib/commonjs/types/PaymentMethod.js.map +1 -0
  79. package/lib/commonjs/types/PaymentSheet.js +1 -1
  80. package/lib/commonjs/types/SetupIntent.js +1 -1
  81. package/lib/commonjs/types/SetupIntent.js.map +1 -1
  82. package/lib/commonjs/types/ThreeDSecure.js +1 -1
  83. package/lib/commonjs/types/ThreeDSecure.js.map +1 -1
  84. package/lib/commonjs/types/Token.js +2 -0
  85. package/lib/commonjs/types/Token.js.map +1 -0
  86. package/lib/commonjs/types/components/ApplePayButtonComponent.js +1 -1
  87. package/lib/commonjs/types/components/ApplePayButtonComponent.js.map +1 -1
  88. package/lib/commonjs/types/components/AuBECSDebitFormComponent.js +2 -0
  89. package/lib/commonjs/types/components/AuBECSDebitFormComponent.js.map +1 -0
  90. package/lib/commonjs/types/components/CardFieldInput.js +1 -1
  91. package/lib/commonjs/types/components/CardFieldInput.js.map +1 -1
  92. package/lib/commonjs/types/components/CardFormView.js +1 -1
  93. package/lib/commonjs/types/components/CardFormView.js.map +1 -1
  94. package/lib/commonjs/types/index.js +1 -1
  95. package/lib/commonjs/types/index.js.map +1 -1
  96. package/lib/module/NativeStripeSdk.js.map +1 -1
  97. package/lib/module/components/AddToWalletButton.js +2 -0
  98. package/lib/module/components/AddToWalletButton.js.map +1 -0
  99. package/lib/module/components/ApplePayButton.js +1 -1
  100. package/lib/module/components/ApplePayButton.js.map +1 -1
  101. package/lib/module/components/AuBECSDebitForm.js +1 -1
  102. package/lib/module/components/AuBECSDebitForm.js.map +1 -1
  103. package/lib/module/components/CardField.js +1 -1
  104. package/lib/module/components/CardField.js.map +1 -1
  105. package/lib/module/components/CardForm.js +1 -1
  106. package/lib/module/components/CardForm.js.map +1 -1
  107. package/lib/module/components/GooglePayButton.js +1 -1
  108. package/lib/module/components/GooglePayButton.js.map +1 -1
  109. package/lib/module/components/StripeContainer.js +1 -1
  110. package/lib/module/components/StripeContainer.js.map +1 -1
  111. package/lib/module/components/StripeProvider.js +1 -1
  112. package/lib/module/components/StripeProvider.js.map +1 -1
  113. package/lib/module/functions.js +1 -1
  114. package/lib/module/functions.js.map +1 -1
  115. package/lib/module/helpers.js.map +1 -1
  116. package/lib/module/hooks/useConfirmPayment.js.map +1 -1
  117. package/lib/module/hooks/useConfirmSetupIntent.js.map +1 -1
  118. package/lib/module/hooks/useGooglePay.js.map +1 -1
  119. package/lib/module/hooks/useStripe.js +1 -1
  120. package/lib/module/hooks/useStripe.js.map +1 -1
  121. package/lib/module/index.js +1 -1
  122. package/lib/module/index.js.map +1 -1
  123. package/lib/module/types/ApplePay.js +1 -1
  124. package/lib/module/types/ApplePay.js.map +1 -1
  125. package/lib/module/types/Common.js +2 -0
  126. package/lib/module/types/Common.js.map +1 -0
  127. package/lib/module/types/Errors.js +1 -1
  128. package/lib/module/types/Errors.js.map +1 -1
  129. package/lib/module/types/GooglePay.js +1 -1
  130. package/lib/module/types/GooglePay.js.map +1 -1
  131. package/lib/module/types/PaymentIntent.js +2 -0
  132. package/lib/module/types/PaymentIntent.js.map +1 -0
  133. package/lib/module/types/PaymentMethod.js +2 -0
  134. package/lib/module/types/PaymentMethod.js.map +1 -0
  135. package/lib/module/types/PaymentSheet.js +1 -1
  136. package/lib/module/types/SetupIntent.js +1 -1
  137. package/lib/module/types/SetupIntent.js.map +1 -1
  138. package/lib/module/types/ThreeDSecure.js +1 -1
  139. package/lib/module/types/ThreeDSecure.js.map +1 -1
  140. package/lib/module/types/Token.js +2 -0
  141. package/lib/module/types/Token.js.map +1 -0
  142. package/lib/module/types/components/ApplePayButtonComponent.js +1 -1
  143. package/lib/module/types/components/ApplePayButtonComponent.js.map +1 -1
  144. package/lib/module/types/components/AuBECSDebitFormComponent.js +2 -0
  145. package/lib/module/types/components/AuBECSDebitFormComponent.js.map +1 -0
  146. package/lib/module/types/components/CardFieldInput.js +1 -1
  147. package/lib/module/types/components/CardFieldInput.js.map +1 -1
  148. package/lib/module/types/components/CardFormView.js +1 -1
  149. package/lib/module/types/components/CardFormView.js.map +1 -1
  150. package/lib/module/types/index.js +1 -1
  151. package/lib/module/types/index.js.map +1 -1
  152. package/lib/typescript/example/src/App.d.ts +1 -0
  153. package/lib/typescript/example/src/screens/PayPalScreen.d.ts +1 -0
  154. package/lib/typescript/src/NativeStripeSdk.d.ts +18 -9
  155. package/lib/typescript/src/components/AddToWalletButton.d.ts +65 -0
  156. package/lib/typescript/src/components/ApplePayButton.d.ts +2 -2
  157. package/lib/typescript/src/components/CardField.d.ts +3 -3
  158. package/lib/typescript/src/components/CardForm.d.ts +3 -0
  159. package/lib/typescript/src/components/StripeProvider.d.ts +1 -1
  160. package/lib/typescript/src/functions.d.ts +20 -15
  161. package/lib/typescript/src/helpers.d.ts +2 -1
  162. package/lib/typescript/src/hooks/useConfirmPayment.d.ts +2 -2
  163. package/lib/typescript/src/hooks/useConfirmSetupIntent.d.ts +2 -2
  164. package/lib/typescript/src/hooks/useGooglePay.d.ts +2 -2
  165. package/lib/typescript/src/hooks/useStripe.d.ts +11 -12
  166. package/lib/typescript/src/index.d.ts +1 -0
  167. package/lib/typescript/src/types/ApplePay.d.ts +48 -50
  168. package/lib/typescript/src/types/Common.d.ts +14 -0
  169. package/lib/typescript/src/types/Errors.d.ts +10 -0
  170. package/lib/typescript/src/types/GooglePay.d.ts +45 -50
  171. package/lib/typescript/src/types/PaymentIntent.d.ts +46 -0
  172. package/lib/typescript/src/types/PaymentMethod.d.ts +216 -0
  173. package/lib/typescript/src/types/PaymentSheet.d.ts +41 -55
  174. package/lib/typescript/src/types/SetupIntent.d.ts +22 -56
  175. package/lib/typescript/src/types/ThreeDSecure.d.ts +62 -68
  176. package/lib/typescript/src/types/Token.d.ts +50 -0
  177. package/lib/typescript/src/types/components/ApplePayButtonComponent.d.ts +8 -10
  178. package/{src/types/components/AuBECSDebitForm.ts → lib/typescript/src/types/components/AuBECSDebitFormComponent.d.ts} +8 -13
  179. package/lib/typescript/src/types/components/CardFieldInput.d.ts +63 -65
  180. package/lib/typescript/src/types/components/CardFormView.d.ts +53 -44
  181. package/lib/typescript/src/types/index.d.ts +70 -61
  182. package/package.json +8 -4
  183. package/src/NativeStripeSdk.tsx +20 -18
  184. package/src/components/AddToWalletButton.tsx +93 -0
  185. package/src/components/ApplePayButton.tsx +4 -4
  186. package/src/components/CardField.tsx +11 -10
  187. package/src/components/CardForm.tsx +22 -12
  188. package/src/components/StripeProvider.tsx +1 -4
  189. package/src/functions.ts +102 -136
  190. package/src/helpers.ts +3 -2
  191. package/src/hooks/useConfirmPayment.tsx +3 -3
  192. package/src/hooks/useConfirmSetupIntent.tsx +3 -3
  193. package/src/hooks/useGooglePay.tsx +2 -2
  194. package/src/hooks/useStripe.tsx +22 -20
  195. package/src/index.tsx +4 -0
  196. package/src/types/ApplePay.ts +60 -62
  197. package/src/types/Common.ts +15 -0
  198. package/src/types/Errors.ts +12 -0
  199. package/src/types/GooglePay.ts +67 -73
  200. package/src/types/PaymentIntent.ts +53 -0
  201. package/src/types/PaymentMethod.ts +290 -0
  202. package/src/types/PaymentSheet.ts +49 -63
  203. package/src/types/SetupIntent.ts +47 -82
  204. package/src/types/ThreeDSecure.ts +63 -69
  205. package/src/types/Token.ts +74 -0
  206. package/src/types/components/ApplePayButtonComponent.ts +25 -27
  207. package/src/types/components/AuBECSDebitFormComponent.ts +29 -0
  208. package/src/types/components/CardFieldInput.ts +66 -67
  209. package/src/types/components/CardFormView.ts +59 -51
  210. package/src/types/index.ts +105 -71
  211. package/stripe-react-native.podspec +3 -2
  212. package/android/build/.transforms/06225d218c14d1720edd690e5aad3666/results.bin +0 -0
  213. package/android/build/.transforms/31ceac6fb5d33b3621129bf6bacef38e/results.bin +0 -1
  214. package/android/build/.transforms/31ceac6fb5d33b3621129bf6bacef38e/transformed/classes/classes.dex +0 -0
  215. package/android/build/.transforms/48791259e8e16eb93ec0e1ee5c2320d3/results.bin +0 -1
  216. package/android/build/.transforms/48791259e8e16eb93ec0e1ee5c2320d3/transformed/classes/classes.dex +0 -0
  217. package/android/build/.transforms/74570cf3214a596c51ea9185f02b2c7f/results.bin +0 -1
  218. package/android/build/.transforms/74570cf3214a596c51ea9185f02b2c7f/transformed/classes/classes.dex +0 -0
  219. package/android/build/.transforms/82928fc3901d2ce5cedef114e23b9dd5/results.bin +0 -1
  220. package/android/build/.transforms/82928fc3901d2ce5cedef114e23b9dd5/transformed/classes/classes.dex +0 -0
  221. package/android/build/.transforms/9338bfb74c726e5746db5e10b980917a/results.bin +0 -1
  222. package/android/build/.transforms/9338bfb74c726e5746db5e10b980917a/transformed/classes/classes.dex +0 -0
  223. package/android/build/.transforms/c731e6bf5b480f659bf1c341f3f0657c/results.bin +0 -1
  224. package/android/build/.transforms/c731e6bf5b480f659bf1c341f3f0657c/transformed/classes/classes.dex +0 -0
  225. package/android/build/.transforms/d42db6dbe74ca8dbcb5922d32e8646c4/results.bin +0 -1
  226. package/android/build/.transforms/d42db6dbe74ca8dbcb5922d32e8646c4/transformed/classes/classes.dex +0 -0
  227. package/android/build/.transforms/d436978a4beecbc35d07543a01fe4a5c/results.bin +0 -1
  228. package/android/build/.transforms/d436978a4beecbc35d07543a01fe4a5c/transformed/classes/classes.dex +0 -0
  229. package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/GooglepayButtonBinding.java +0 -52
  230. package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.java +0 -52
  231. package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.java +0 -52
  232. package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.java +0 -52
  233. package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/GooglepayButtonBinding.java +0 -52
  234. package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.java +0 -52
  235. package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.java +0 -52
  236. package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.java +0 -52
  237. package/android/build/generated/source/buildConfig/debug/com/reactnativestripesdk/BuildConfig.java +0 -10
  238. package/android/build/generated/source/buildConfig/release/com/reactnativestripesdk/BuildConfig.java +0 -10
  239. package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml +0 -9
  240. package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json +0 -16
  241. package/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/AndroidManifest.xml +0 -9
  242. package/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/output-metadata.json +0 -16
  243. package/android/build/intermediates/aar_metadata/debug/aar-metadata.properties +0 -2
  244. package/android/build/intermediates/aar_metadata/release/aar-metadata.properties +0 -2
  245. package/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json +0 -1
  246. package/android/build/intermediates/annotation_processor_list/release/annotationProcessors.json +0 -1
  247. package/android/build/intermediates/compile_library_classes_jar/debug/classes.jar +0 -0
  248. package/android/build/intermediates/compile_library_classes_jar/release/classes.jar +0 -0
  249. package/android/build/intermediates/compile_r_class_jar/debug/R.jar +0 -0
  250. package/android/build/intermediates/compile_r_class_jar/release/R.jar +0 -0
  251. package/android/build/intermediates/compile_symbol_list/debug/R.txt +0 -7540
  252. package/android/build/intermediates/compile_symbol_list/release/R.txt +0 -7540
  253. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ar-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  254. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ar_pay_with_googlepay_button_content.xml.flat +0 -0
  255. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-bg-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  256. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-bg_pay_with_googlepay_button_content.xml.flat +0 -0
  257. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ca-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  258. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ca_pay_with_googlepay_button_content.xml.flat +0 -0
  259. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-cs-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  260. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-cs_pay_with_googlepay_button_content.xml.flat +0 -0
  261. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-da-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  262. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-da_pay_with_googlepay_button_content.xml.flat +0 -0
  263. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-de-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  264. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-de_pay_with_googlepay_button_content.xml.flat +0 -0
  265. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-el-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  266. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-el_pay_with_googlepay_button_content.xml.flat +0 -0
  267. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-es-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  268. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-es_pay_with_googlepay_button_content.xml.flat +0 -0
  269. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-et-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  270. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-et_pay_with_googlepay_button_content.xml.flat +0 -0
  271. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fi-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  272. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fi_pay_with_googlepay_button_content.xml.flat +0 -0
  273. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  274. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fr_pay_with_googlepay_button_content.xml.flat +0 -0
  275. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  276. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  277. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  278. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  279. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  280. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  281. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  282. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hr_pay_with_googlepay_button_content.xml.flat +0 -0
  283. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-id-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  284. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-id_pay_with_googlepay_button_content.xml.flat +0 -0
  285. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-it-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  286. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-it_pay_with_googlepay_button_content.xml.flat +0 -0
  287. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ja-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  288. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ja_pay_with_googlepay_button_content.xml.flat +0 -0
  289. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ko-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  290. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ko_pay_with_googlepay_button_content.xml.flat +0 -0
  291. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  292. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  293. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  294. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  295. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  296. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  297. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ms-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  298. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ms_pay_with_googlepay_button_content.xml.flat +0 -0
  299. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-hdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  300. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-hdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  301. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-mdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  302. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-mdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  303. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v21_googlepay_button_background.xml.flat +0 -0
  304. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
  305. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v8_googlepay_button_content.xml.flat +0 -0
  306. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v8_googlepay_button_overlay.xml.flat +0 -0
  307. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  308. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  309. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  310. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  311. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  312. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  313. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  314. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-nl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  315. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-nl_pay_with_googlepay_button_content.xml.flat +0 -0
  316. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-no-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  317. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-no_pay_with_googlepay_button_content.xml.flat +0 -0
  318. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  319. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pl_pay_with_googlepay_button_content.xml.flat +0 -0
  320. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pt-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  321. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pt_pay_with_googlepay_button_content.xml.flat +0 -0
  322. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ru-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  323. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ru_pay_with_googlepay_button_content.xml.flat +0 -0
  324. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  325. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sk_pay_with_googlepay_button_content.xml.flat +0 -0
  326. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  327. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sl_pay_with_googlepay_button_content.xml.flat +0 -0
  328. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  329. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sr_pay_with_googlepay_button_content.xml.flat +0 -0
  330. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sv-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  331. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sv_pay_with_googlepay_button_content.xml.flat +0 -0
  332. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-th-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  333. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-th_pay_with_googlepay_button_content.xml.flat +0 -0
  334. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-tr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  335. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-tr_pay_with_googlepay_button_content.xml.flat +0 -0
  336. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-uk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  337. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-uk_pay_with_googlepay_button_content.xml.flat +0 -0
  338. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-v21_googlepay_button_background.xml.flat +0 -0
  339. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
  340. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  341. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  342. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  343. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  344. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  345. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  346. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  347. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  348. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  349. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  350. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  351. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  352. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  353. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  354. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  355. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  356. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  357. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  358. package/android/build/intermediates/compiled_local_resources/debug/out/drawable-zh_pay_with_googlepay_button_content.xml.flat +0 -0
  359. package/android/build/intermediates/compiled_local_resources/debug/out/drawable_googlepay_button_content.xml.flat +0 -0
  360. package/android/build/intermediates/compiled_local_resources/debug/out/drawable_googlepay_button_overlay.xml.flat +0 -0
  361. package/android/build/intermediates/compiled_local_resources/debug/out/drawable_pay_with_googlepay_button_content.xml.flat +0 -0
  362. package/android/build/intermediates/compiled_local_resources/debug/out/layout-night-v8_googlepay_button.xml.flat +0 -0
  363. package/android/build/intermediates/compiled_local_resources/debug/out/layout-night-v8_pay_with_googlepay_button.xml.flat +0 -0
  364. package/android/build/intermediates/compiled_local_resources/debug/out/layout_googlepay_button.xml.flat +0 -0
  365. package/android/build/intermediates/compiled_local_resources/debug/out/layout_googlepay_button_no_shadow.xml.flat +0 -0
  366. package/android/build/intermediates/compiled_local_resources/debug/out/layout_pay_with_googlepay_button.xml.flat +0 -0
  367. package/android/build/intermediates/compiled_local_resources/debug/out/layout_pay_with_googlepay_button_no_shadow.xml.flat +0 -0
  368. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ar-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  369. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ar_pay_with_googlepay_button_content.xml.flat +0 -0
  370. package/android/build/intermediates/compiled_local_resources/release/out/drawable-bg-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  371. package/android/build/intermediates/compiled_local_resources/release/out/drawable-bg_pay_with_googlepay_button_content.xml.flat +0 -0
  372. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ca-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  373. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ca_pay_with_googlepay_button_content.xml.flat +0 -0
  374. package/android/build/intermediates/compiled_local_resources/release/out/drawable-cs-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  375. package/android/build/intermediates/compiled_local_resources/release/out/drawable-cs_pay_with_googlepay_button_content.xml.flat +0 -0
  376. package/android/build/intermediates/compiled_local_resources/release/out/drawable-da-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  377. package/android/build/intermediates/compiled_local_resources/release/out/drawable-da_pay_with_googlepay_button_content.xml.flat +0 -0
  378. package/android/build/intermediates/compiled_local_resources/release/out/drawable-de-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  379. package/android/build/intermediates/compiled_local_resources/release/out/drawable-de_pay_with_googlepay_button_content.xml.flat +0 -0
  380. package/android/build/intermediates/compiled_local_resources/release/out/drawable-el-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  381. package/android/build/intermediates/compiled_local_resources/release/out/drawable-el_pay_with_googlepay_button_content.xml.flat +0 -0
  382. package/android/build/intermediates/compiled_local_resources/release/out/drawable-es-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  383. package/android/build/intermediates/compiled_local_resources/release/out/drawable-es_pay_with_googlepay_button_content.xml.flat +0 -0
  384. package/android/build/intermediates/compiled_local_resources/release/out/drawable-et-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  385. package/android/build/intermediates/compiled_local_resources/release/out/drawable-et_pay_with_googlepay_button_content.xml.flat +0 -0
  386. package/android/build/intermediates/compiled_local_resources/release/out/drawable-fi-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  387. package/android/build/intermediates/compiled_local_resources/release/out/drawable-fi_pay_with_googlepay_button_content.xml.flat +0 -0
  388. package/android/build/intermediates/compiled_local_resources/release/out/drawable-fr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  389. package/android/build/intermediates/compiled_local_resources/release/out/drawable-fr_pay_with_googlepay_button_content.xml.flat +0 -0
  390. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  391. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  392. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  393. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  394. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  395. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  396. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  397. package/android/build/intermediates/compiled_local_resources/release/out/drawable-hr_pay_with_googlepay_button_content.xml.flat +0 -0
  398. package/android/build/intermediates/compiled_local_resources/release/out/drawable-id-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  399. package/android/build/intermediates/compiled_local_resources/release/out/drawable-id_pay_with_googlepay_button_content.xml.flat +0 -0
  400. package/android/build/intermediates/compiled_local_resources/release/out/drawable-it-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  401. package/android/build/intermediates/compiled_local_resources/release/out/drawable-it_pay_with_googlepay_button_content.xml.flat +0 -0
  402. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ja-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  403. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ja_pay_with_googlepay_button_content.xml.flat +0 -0
  404. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ko-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  405. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ko_pay_with_googlepay_button_content.xml.flat +0 -0
  406. package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  407. package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  408. package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  409. package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  410. package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  411. package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  412. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ms-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  413. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ms_pay_with_googlepay_button_content.xml.flat +0 -0
  414. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-hdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  415. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-hdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  416. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-mdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  417. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-mdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  418. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v21_googlepay_button_background.xml.flat +0 -0
  419. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
  420. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v8_googlepay_button_content.xml.flat +0 -0
  421. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v8_googlepay_button_overlay.xml.flat +0 -0
  422. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  423. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  424. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  425. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  426. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  427. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
  428. package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  429. package/android/build/intermediates/compiled_local_resources/release/out/drawable-nl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  430. package/android/build/intermediates/compiled_local_resources/release/out/drawable-nl_pay_with_googlepay_button_content.xml.flat +0 -0
  431. package/android/build/intermediates/compiled_local_resources/release/out/drawable-no-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  432. package/android/build/intermediates/compiled_local_resources/release/out/drawable-no_pay_with_googlepay_button_content.xml.flat +0 -0
  433. package/android/build/intermediates/compiled_local_resources/release/out/drawable-pl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  434. package/android/build/intermediates/compiled_local_resources/release/out/drawable-pl_pay_with_googlepay_button_content.xml.flat +0 -0
  435. package/android/build/intermediates/compiled_local_resources/release/out/drawable-pt-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  436. package/android/build/intermediates/compiled_local_resources/release/out/drawable-pt_pay_with_googlepay_button_content.xml.flat +0 -0
  437. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ru-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  438. package/android/build/intermediates/compiled_local_resources/release/out/drawable-ru_pay_with_googlepay_button_content.xml.flat +0 -0
  439. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  440. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sk_pay_with_googlepay_button_content.xml.flat +0 -0
  441. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  442. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sl_pay_with_googlepay_button_content.xml.flat +0 -0
  443. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  444. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sr_pay_with_googlepay_button_content.xml.flat +0 -0
  445. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sv-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  446. package/android/build/intermediates/compiled_local_resources/release/out/drawable-sv_pay_with_googlepay_button_content.xml.flat +0 -0
  447. package/android/build/intermediates/compiled_local_resources/release/out/drawable-th-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  448. package/android/build/intermediates/compiled_local_resources/release/out/drawable-th_pay_with_googlepay_button_content.xml.flat +0 -0
  449. package/android/build/intermediates/compiled_local_resources/release/out/drawable-tr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  450. package/android/build/intermediates/compiled_local_resources/release/out/drawable-tr_pay_with_googlepay_button_content.xml.flat +0 -0
  451. package/android/build/intermediates/compiled_local_resources/release/out/drawable-uk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
  452. package/android/build/intermediates/compiled_local_resources/release/out/drawable-uk_pay_with_googlepay_button_content.xml.flat +0 -0
  453. package/android/build/intermediates/compiled_local_resources/release/out/drawable-v21_googlepay_button_background.xml.flat +0 -0
  454. package/android/build/intermediates/compiled_local_resources/release/out/drawable-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
  455. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  456. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  457. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  458. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  459. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  460. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  461. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  462. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  463. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  464. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  465. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  466. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  467. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
  468. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
  469. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
  470. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
  471. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
  472. package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
  473. package/android/build/intermediates/compiled_local_resources/release/out/drawable-zh_pay_with_googlepay_button_content.xml.flat +0 -0
  474. package/android/build/intermediates/compiled_local_resources/release/out/drawable_googlepay_button_content.xml.flat +0 -0
  475. package/android/build/intermediates/compiled_local_resources/release/out/drawable_googlepay_button_overlay.xml.flat +0 -0
  476. package/android/build/intermediates/compiled_local_resources/release/out/drawable_pay_with_googlepay_button_content.xml.flat +0 -0
  477. package/android/build/intermediates/compiled_local_resources/release/out/layout-night-v8_googlepay_button.xml.flat +0 -0
  478. package/android/build/intermediates/compiled_local_resources/release/out/layout-night-v8_pay_with_googlepay_button.xml.flat +0 -0
  479. package/android/build/intermediates/compiled_local_resources/release/out/layout_googlepay_button.xml.flat +0 -0
  480. package/android/build/intermediates/compiled_local_resources/release/out/layout_googlepay_button_no_shadow.xml.flat +0 -0
  481. package/android/build/intermediates/compiled_local_resources/release/out/layout_pay_with_googlepay_button.xml.flat +0 -0
  482. package/android/build/intermediates/compiled_local_resources/release/out/layout_pay_with_googlepay_button_no_shadow.xml.flat +0 -0
  483. package/android/build/intermediates/data_binding_base_class_log_artifact/debug/out/com.reactnativestripesdk-binding_classes.json +0 -0
  484. package/android/build/intermediates/data_binding_base_class_log_artifact/release/out/com.reactnativestripesdk-binding_classes.json +0 -0
  485. package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/googlepay_button-layout-night.xml +0 -1
  486. package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/googlepay_button-layout.xml +0 -1
  487. package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/googlepay_button_no_shadow-layout.xml +0 -1
  488. package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/pay_with_googlepay_button-layout-night.xml +0 -1
  489. package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/pay_with_googlepay_button-layout.xml +0 -1
  490. package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/pay_with_googlepay_button_no_shadow-layout.xml +0 -1
  491. package/android/build/intermediates/data_binding_layout_info_type_package/release/out/googlepay_button-layout-night.xml +0 -1
  492. package/android/build/intermediates/data_binding_layout_info_type_package/release/out/googlepay_button-layout.xml +0 -1
  493. package/android/build/intermediates/data_binding_layout_info_type_package/release/out/googlepay_button_no_shadow-layout.xml +0 -1
  494. package/android/build/intermediates/data_binding_layout_info_type_package/release/out/pay_with_googlepay_button-layout-night.xml +0 -1
  495. package/android/build/intermediates/data_binding_layout_info_type_package/release/out/pay_with_googlepay_button-layout.xml +0 -1
  496. package/android/build/intermediates/data_binding_layout_info_type_package/release/out/pay_with_googlepay_button_no_shadow-layout.xml +0 -1
  497. package/android/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json +0 -0
  498. package/android/build/intermediates/incremental/dataBindingGenBaseClassesRelease/base_builder_log.json +0 -0
  499. package/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
  500. package/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
  501. package/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml +0 -2
  502. package/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml +0 -2
  503. package/android/build/intermediates/incremental/packageDebugAssets/merger.xml +0 -2
  504. package/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties +0 -116
  505. package/android/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml +0 -12
  506. package/android/build/intermediates/incremental/packageDebugResources/merged.dir/values-night-v8/values-night-v8.xml +0 -12
  507. package/android/build/intermediates/incremental/packageDebugResources/merger.xml +0 -2
  508. package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/googlepay_button.xml +0 -31
  509. package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/googlepay_button_no_shadow.xml +0 -31
  510. package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/pay_with_googlepay_button.xml +0 -31
  511. package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
  512. package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout-night-v8/googlepay_button.xml +0 -31
  513. package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout-night-v8/pay_with_googlepay_button.xml +0 -31
  514. package/android/build/intermediates/incremental/packageReleaseAssets/merger.xml +0 -2
  515. package/android/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties +0 -116
  516. package/android/build/intermediates/incremental/packageReleaseResources/merged.dir/values/values.xml +0 -12
  517. package/android/build/intermediates/incremental/packageReleaseResources/merged.dir/values-night-v8/values-night-v8.xml +0 -12
  518. package/android/build/intermediates/incremental/packageReleaseResources/merger.xml +0 -2
  519. package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/googlepay_button.xml +0 -31
  520. package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/googlepay_button_no_shadow.xml +0 -31
  521. package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/pay_with_googlepay_button.xml +0 -31
  522. package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
  523. package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout-night-v8/googlepay_button.xml +0 -31
  524. package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout-night-v8/pay_with_googlepay_button.xml +0 -31
  525. package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/BuildConfig.class +0 -0
  526. package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/GooglepayButtonBinding.class +0 -0
  527. package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.class +0 -0
  528. package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.class +0 -0
  529. package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.class +0 -0
  530. package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/BuildConfig.class +0 -0
  531. package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/GooglepayButtonBinding.class +0 -0
  532. package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.class +0 -0
  533. package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.class +0 -0
  534. package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.class +0 -0
  535. package/android/build/intermediates/library_java_res/debug/res.jar +0 -0
  536. package/android/build/intermediates/library_java_res/release/res.jar +0 -0
  537. package/android/build/intermediates/local_only_symbol_list/debug/R-def.txt +0 -26
  538. package/android/build/intermediates/local_only_symbol_list/release/R-def.txt +0 -26
  539. package/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +0 -11
  540. package/android/build/intermediates/manifest_merge_blame_file/release/manifest-merger-blame-release-report.txt +0 -11
  541. package/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml +0 -9
  542. package/android/build/intermediates/merged_manifest/release/AndroidManifest.xml +0 -9
  543. package/android/build/intermediates/navigation_json/debug/navigation.json +0 -1
  544. package/android/build/intermediates/navigation_json/release/navigation.json +0 -1
  545. package/android/build/intermediates/packaged_manifests/debug/output-metadata.json +0 -16
  546. package/android/build/intermediates/packaged_manifests/release/output-metadata.json +0 -16
  547. package/android/build/intermediates/packaged_res/debug/drawable/googlepay_button_content.xml +0 -48
  548. package/android/build/intermediates/packaged_res/debug/drawable/googlepay_button_overlay.xml +0 -11
  549. package/android/build/intermediates/packaged_res/debug/drawable/pay_with_googlepay_button_content.xml +0 -14
  550. package/android/build/intermediates/packaged_res/debug/drawable-ar/pay_with_googlepay_button_content.xml +0 -14
  551. package/android/build/intermediates/packaged_res/debug/drawable-ar-night-v8/pay_with_googlepay_button_content.xml +0 -14
  552. package/android/build/intermediates/packaged_res/debug/drawable-bg/pay_with_googlepay_button_content.xml +0 -14
  553. package/android/build/intermediates/packaged_res/debug/drawable-bg-night-v8/pay_with_googlepay_button_content.xml +0 -14
  554. package/android/build/intermediates/packaged_res/debug/drawable-ca/pay_with_googlepay_button_content.xml +0 -14
  555. package/android/build/intermediates/packaged_res/debug/drawable-ca-night-v8/pay_with_googlepay_button_content.xml +0 -14
  556. package/android/build/intermediates/packaged_res/debug/drawable-cs/pay_with_googlepay_button_content.xml +0 -14
  557. package/android/build/intermediates/packaged_res/debug/drawable-cs-night-v8/pay_with_googlepay_button_content.xml +0 -14
  558. package/android/build/intermediates/packaged_res/debug/drawable-da/pay_with_googlepay_button_content.xml +0 -14
  559. package/android/build/intermediates/packaged_res/debug/drawable-da-night-v8/pay_with_googlepay_button_content.xml +0 -14
  560. package/android/build/intermediates/packaged_res/debug/drawable-de/pay_with_googlepay_button_content.xml +0 -15
  561. package/android/build/intermediates/packaged_res/debug/drawable-de-night-v8/pay_with_googlepay_button_content.xml +0 -15
  562. package/android/build/intermediates/packaged_res/debug/drawable-el/pay_with_googlepay_button_content.xml +0 -14
  563. package/android/build/intermediates/packaged_res/debug/drawable-el-night-v8/pay_with_googlepay_button_content.xml +0 -14
  564. package/android/build/intermediates/packaged_res/debug/drawable-es/pay_with_googlepay_button_content.xml +0 -14
  565. package/android/build/intermediates/packaged_res/debug/drawable-es-night-v8/pay_with_googlepay_button_content.xml +0 -14
  566. package/android/build/intermediates/packaged_res/debug/drawable-et/pay_with_googlepay_button_content.xml +0 -14
  567. package/android/build/intermediates/packaged_res/debug/drawable-et-night-v8/pay_with_googlepay_button_content.xml +0 -14
  568. package/android/build/intermediates/packaged_res/debug/drawable-fi/pay_with_googlepay_button_content.xml +0 -15
  569. package/android/build/intermediates/packaged_res/debug/drawable-fi-night-v8/pay_with_googlepay_button_content.xml +0 -15
  570. package/android/build/intermediates/packaged_res/debug/drawable-fr/pay_with_googlepay_button_content.xml +0 -14
  571. package/android/build/intermediates/packaged_res/debug/drawable-fr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  572. package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_background_image.9.png +0 -0
  573. package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  574. package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  575. package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  576. package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  577. package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  578. package/android/build/intermediates/packaged_res/debug/drawable-hr/pay_with_googlepay_button_content.xml +0 -14
  579. package/android/build/intermediates/packaged_res/debug/drawable-hr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  580. package/android/build/intermediates/packaged_res/debug/drawable-id/pay_with_googlepay_button_content.xml +0 -14
  581. package/android/build/intermediates/packaged_res/debug/drawable-id-night-v8/pay_with_googlepay_button_content.xml +0 -14
  582. package/android/build/intermediates/packaged_res/debug/drawable-it/pay_with_googlepay_button_content.xml +0 -14
  583. package/android/build/intermediates/packaged_res/debug/drawable-it-night-v8/pay_with_googlepay_button_content.xml +0 -14
  584. package/android/build/intermediates/packaged_res/debug/drawable-ja/pay_with_googlepay_button_content.xml +0 -14
  585. package/android/build/intermediates/packaged_res/debug/drawable-ja-night-v8/pay_with_googlepay_button_content.xml +0 -14
  586. package/android/build/intermediates/packaged_res/debug/drawable-ko/pay_with_googlepay_button_content.xml +0 -14
  587. package/android/build/intermediates/packaged_res/debug/drawable-ko-night-v8/pay_with_googlepay_button_content.xml +0 -14
  588. package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_background_image.9.png +0 -0
  589. package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  590. package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  591. package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  592. package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  593. package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  594. package/android/build/intermediates/packaged_res/debug/drawable-ms/pay_with_googlepay_button_content.xml +0 -14
  595. package/android/build/intermediates/packaged_res/debug/drawable-ms-night-v8/pay_with_googlepay_button_content.xml +0 -14
  596. package/android/build/intermediates/packaged_res/debug/drawable-night-hdpi-v8/googlepay_button_background_image.9.png +0 -0
  597. package/android/build/intermediates/packaged_res/debug/drawable-night-hdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  598. package/android/build/intermediates/packaged_res/debug/drawable-night-mdpi-v8/googlepay_button_background_image.9.png +0 -0
  599. package/android/build/intermediates/packaged_res/debug/drawable-night-mdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  600. package/android/build/intermediates/packaged_res/debug/drawable-night-v21/googlepay_button_background.xml +0 -7
  601. package/android/build/intermediates/packaged_res/debug/drawable-night-v21/googlepay_button_no_shadow_background.xml +0 -7
  602. package/android/build/intermediates/packaged_res/debug/drawable-night-v8/googlepay_button_content.xml +0 -48
  603. package/android/build/intermediates/packaged_res/debug/drawable-night-v8/googlepay_button_overlay.xml +0 -12
  604. package/android/build/intermediates/packaged_res/debug/drawable-night-v8/pay_with_googlepay_button_content.xml +0 -14
  605. package/android/build/intermediates/packaged_res/debug/drawable-night-xhdpi-v8/googlepay_button_background_image.9.png +0 -0
  606. package/android/build/intermediates/packaged_res/debug/drawable-night-xhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  607. package/android/build/intermediates/packaged_res/debug/drawable-night-xxhdpi-v8/googlepay_button_background_image.9.png +0 -0
  608. package/android/build/intermediates/packaged_res/debug/drawable-night-xxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  609. package/android/build/intermediates/packaged_res/debug/drawable-night-xxxhdpi-v8/googlepay_button_background_image.9.png +0 -0
  610. package/android/build/intermediates/packaged_res/debug/drawable-night-xxxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  611. package/android/build/intermediates/packaged_res/debug/drawable-nl/pay_with_googlepay_button_content.xml +0 -14
  612. package/android/build/intermediates/packaged_res/debug/drawable-nl-night-v8/pay_with_googlepay_button_content.xml +0 -14
  613. package/android/build/intermediates/packaged_res/debug/drawable-no/pay_with_googlepay_button_content.xml +0 -14
  614. package/android/build/intermediates/packaged_res/debug/drawable-no-night-v8/pay_with_googlepay_button_content.xml +0 -14
  615. package/android/build/intermediates/packaged_res/debug/drawable-pl/pay_with_googlepay_button_content.xml +0 -14
  616. package/android/build/intermediates/packaged_res/debug/drawable-pl-night-v8/pay_with_googlepay_button_content.xml +0 -14
  617. package/android/build/intermediates/packaged_res/debug/drawable-pt/pay_with_googlepay_button_content.xml +0 -14
  618. package/android/build/intermediates/packaged_res/debug/drawable-pt-night-v8/pay_with_googlepay_button_content.xml +0 -14
  619. package/android/build/intermediates/packaged_res/debug/drawable-ru/pay_with_googlepay_button_content.xml +0 -14
  620. package/android/build/intermediates/packaged_res/debug/drawable-ru-night-v8/pay_with_googlepay_button_content.xml +0 -14
  621. package/android/build/intermediates/packaged_res/debug/drawable-sk/pay_with_googlepay_button_content.xml +0 -14
  622. package/android/build/intermediates/packaged_res/debug/drawable-sk-night-v8/pay_with_googlepay_button_content.xml +0 -14
  623. package/android/build/intermediates/packaged_res/debug/drawable-sl/pay_with_googlepay_button_content.xml +0 -14
  624. package/android/build/intermediates/packaged_res/debug/drawable-sl-night-v8/pay_with_googlepay_button_content.xml +0 -14
  625. package/android/build/intermediates/packaged_res/debug/drawable-sr/pay_with_googlepay_button_content.xml +0 -14
  626. package/android/build/intermediates/packaged_res/debug/drawable-sr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  627. package/android/build/intermediates/packaged_res/debug/drawable-sv/pay_with_googlepay_button_content.xml +0 -14
  628. package/android/build/intermediates/packaged_res/debug/drawable-sv-night-v8/pay_with_googlepay_button_content.xml +0 -14
  629. package/android/build/intermediates/packaged_res/debug/drawable-th/pay_with_googlepay_button_content.xml +0 -14
  630. package/android/build/intermediates/packaged_res/debug/drawable-th-night-v8/pay_with_googlepay_button_content.xml +0 -14
  631. package/android/build/intermediates/packaged_res/debug/drawable-tr/pay_with_googlepay_button_content.xml +0 -14
  632. package/android/build/intermediates/packaged_res/debug/drawable-tr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  633. package/android/build/intermediates/packaged_res/debug/drawable-uk/pay_with_googlepay_button_content.xml +0 -14
  634. package/android/build/intermediates/packaged_res/debug/drawable-uk-night-v8/pay_with_googlepay_button_content.xml +0 -14
  635. package/android/build/intermediates/packaged_res/debug/drawable-v21/googlepay_button_background.xml +0 -21
  636. package/android/build/intermediates/packaged_res/debug/drawable-v21/googlepay_button_no_shadow_background.xml +0 -21
  637. package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_background_image.9.png +0 -0
  638. package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  639. package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  640. package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  641. package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  642. package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  643. package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_background_image.9.png +0 -0
  644. package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  645. package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  646. package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  647. package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  648. package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  649. package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_background_image.9.png +0 -0
  650. package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  651. package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  652. package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  653. package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  654. package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  655. package/android/build/intermediates/packaged_res/debug/drawable-zh/pay_with_googlepay_button_content.xml +0 -15
  656. package/android/build/intermediates/packaged_res/debug/layout/googlepay_button.xml +0 -31
  657. package/android/build/intermediates/packaged_res/debug/layout/googlepay_button_no_shadow.xml +0 -31
  658. package/android/build/intermediates/packaged_res/debug/layout/pay_with_googlepay_button.xml +0 -31
  659. package/android/build/intermediates/packaged_res/debug/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
  660. package/android/build/intermediates/packaged_res/debug/layout-night-v8/googlepay_button.xml +0 -31
  661. package/android/build/intermediates/packaged_res/debug/layout-night-v8/pay_with_googlepay_button.xml +0 -31
  662. package/android/build/intermediates/packaged_res/debug/values/values.xml +0 -12
  663. package/android/build/intermediates/packaged_res/debug/values-night-v8/values-night-v8.xml +0 -12
  664. package/android/build/intermediates/packaged_res/release/drawable/googlepay_button_content.xml +0 -48
  665. package/android/build/intermediates/packaged_res/release/drawable/googlepay_button_overlay.xml +0 -11
  666. package/android/build/intermediates/packaged_res/release/drawable/pay_with_googlepay_button_content.xml +0 -14
  667. package/android/build/intermediates/packaged_res/release/drawable-ar/pay_with_googlepay_button_content.xml +0 -14
  668. package/android/build/intermediates/packaged_res/release/drawable-ar-night-v8/pay_with_googlepay_button_content.xml +0 -14
  669. package/android/build/intermediates/packaged_res/release/drawable-bg/pay_with_googlepay_button_content.xml +0 -14
  670. package/android/build/intermediates/packaged_res/release/drawable-bg-night-v8/pay_with_googlepay_button_content.xml +0 -14
  671. package/android/build/intermediates/packaged_res/release/drawable-ca/pay_with_googlepay_button_content.xml +0 -14
  672. package/android/build/intermediates/packaged_res/release/drawable-ca-night-v8/pay_with_googlepay_button_content.xml +0 -14
  673. package/android/build/intermediates/packaged_res/release/drawable-cs/pay_with_googlepay_button_content.xml +0 -14
  674. package/android/build/intermediates/packaged_res/release/drawable-cs-night-v8/pay_with_googlepay_button_content.xml +0 -14
  675. package/android/build/intermediates/packaged_res/release/drawable-da/pay_with_googlepay_button_content.xml +0 -14
  676. package/android/build/intermediates/packaged_res/release/drawable-da-night-v8/pay_with_googlepay_button_content.xml +0 -14
  677. package/android/build/intermediates/packaged_res/release/drawable-de/pay_with_googlepay_button_content.xml +0 -15
  678. package/android/build/intermediates/packaged_res/release/drawable-de-night-v8/pay_with_googlepay_button_content.xml +0 -15
  679. package/android/build/intermediates/packaged_res/release/drawable-el/pay_with_googlepay_button_content.xml +0 -14
  680. package/android/build/intermediates/packaged_res/release/drawable-el-night-v8/pay_with_googlepay_button_content.xml +0 -14
  681. package/android/build/intermediates/packaged_res/release/drawable-es/pay_with_googlepay_button_content.xml +0 -14
  682. package/android/build/intermediates/packaged_res/release/drawable-es-night-v8/pay_with_googlepay_button_content.xml +0 -14
  683. package/android/build/intermediates/packaged_res/release/drawable-et/pay_with_googlepay_button_content.xml +0 -14
  684. package/android/build/intermediates/packaged_res/release/drawable-et-night-v8/pay_with_googlepay_button_content.xml +0 -14
  685. package/android/build/intermediates/packaged_res/release/drawable-fi/pay_with_googlepay_button_content.xml +0 -15
  686. package/android/build/intermediates/packaged_res/release/drawable-fi-night-v8/pay_with_googlepay_button_content.xml +0 -15
  687. package/android/build/intermediates/packaged_res/release/drawable-fr/pay_with_googlepay_button_content.xml +0 -14
  688. package/android/build/intermediates/packaged_res/release/drawable-fr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  689. package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_background_image.9.png +0 -0
  690. package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  691. package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  692. package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  693. package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  694. package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  695. package/android/build/intermediates/packaged_res/release/drawable-hr/pay_with_googlepay_button_content.xml +0 -14
  696. package/android/build/intermediates/packaged_res/release/drawable-hr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  697. package/android/build/intermediates/packaged_res/release/drawable-id/pay_with_googlepay_button_content.xml +0 -14
  698. package/android/build/intermediates/packaged_res/release/drawable-id-night-v8/pay_with_googlepay_button_content.xml +0 -14
  699. package/android/build/intermediates/packaged_res/release/drawable-it/pay_with_googlepay_button_content.xml +0 -14
  700. package/android/build/intermediates/packaged_res/release/drawable-it-night-v8/pay_with_googlepay_button_content.xml +0 -14
  701. package/android/build/intermediates/packaged_res/release/drawable-ja/pay_with_googlepay_button_content.xml +0 -14
  702. package/android/build/intermediates/packaged_res/release/drawable-ja-night-v8/pay_with_googlepay_button_content.xml +0 -14
  703. package/android/build/intermediates/packaged_res/release/drawable-ko/pay_with_googlepay_button_content.xml +0 -14
  704. package/android/build/intermediates/packaged_res/release/drawable-ko-night-v8/pay_with_googlepay_button_content.xml +0 -14
  705. package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_background_image.9.png +0 -0
  706. package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  707. package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  708. package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  709. package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  710. package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  711. package/android/build/intermediates/packaged_res/release/drawable-ms/pay_with_googlepay_button_content.xml +0 -14
  712. package/android/build/intermediates/packaged_res/release/drawable-ms-night-v8/pay_with_googlepay_button_content.xml +0 -14
  713. package/android/build/intermediates/packaged_res/release/drawable-night-hdpi-v8/googlepay_button_background_image.9.png +0 -0
  714. package/android/build/intermediates/packaged_res/release/drawable-night-hdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  715. package/android/build/intermediates/packaged_res/release/drawable-night-mdpi-v8/googlepay_button_background_image.9.png +0 -0
  716. package/android/build/intermediates/packaged_res/release/drawable-night-mdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  717. package/android/build/intermediates/packaged_res/release/drawable-night-v21/googlepay_button_background.xml +0 -7
  718. package/android/build/intermediates/packaged_res/release/drawable-night-v21/googlepay_button_no_shadow_background.xml +0 -7
  719. package/android/build/intermediates/packaged_res/release/drawable-night-v8/googlepay_button_content.xml +0 -48
  720. package/android/build/intermediates/packaged_res/release/drawable-night-v8/googlepay_button_overlay.xml +0 -12
  721. package/android/build/intermediates/packaged_res/release/drawable-night-v8/pay_with_googlepay_button_content.xml +0 -14
  722. package/android/build/intermediates/packaged_res/release/drawable-night-xhdpi-v8/googlepay_button_background_image.9.png +0 -0
  723. package/android/build/intermediates/packaged_res/release/drawable-night-xhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  724. package/android/build/intermediates/packaged_res/release/drawable-night-xxhdpi-v8/googlepay_button_background_image.9.png +0 -0
  725. package/android/build/intermediates/packaged_res/release/drawable-night-xxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  726. package/android/build/intermediates/packaged_res/release/drawable-night-xxxhdpi-v8/googlepay_button_background_image.9.png +0 -0
  727. package/android/build/intermediates/packaged_res/release/drawable-night-xxxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
  728. package/android/build/intermediates/packaged_res/release/drawable-nl/pay_with_googlepay_button_content.xml +0 -14
  729. package/android/build/intermediates/packaged_res/release/drawable-nl-night-v8/pay_with_googlepay_button_content.xml +0 -14
  730. package/android/build/intermediates/packaged_res/release/drawable-no/pay_with_googlepay_button_content.xml +0 -14
  731. package/android/build/intermediates/packaged_res/release/drawable-no-night-v8/pay_with_googlepay_button_content.xml +0 -14
  732. package/android/build/intermediates/packaged_res/release/drawable-pl/pay_with_googlepay_button_content.xml +0 -14
  733. package/android/build/intermediates/packaged_res/release/drawable-pl-night-v8/pay_with_googlepay_button_content.xml +0 -14
  734. package/android/build/intermediates/packaged_res/release/drawable-pt/pay_with_googlepay_button_content.xml +0 -14
  735. package/android/build/intermediates/packaged_res/release/drawable-pt-night-v8/pay_with_googlepay_button_content.xml +0 -14
  736. package/android/build/intermediates/packaged_res/release/drawable-ru/pay_with_googlepay_button_content.xml +0 -14
  737. package/android/build/intermediates/packaged_res/release/drawable-ru-night-v8/pay_with_googlepay_button_content.xml +0 -14
  738. package/android/build/intermediates/packaged_res/release/drawable-sk/pay_with_googlepay_button_content.xml +0 -14
  739. package/android/build/intermediates/packaged_res/release/drawable-sk-night-v8/pay_with_googlepay_button_content.xml +0 -14
  740. package/android/build/intermediates/packaged_res/release/drawable-sl/pay_with_googlepay_button_content.xml +0 -14
  741. package/android/build/intermediates/packaged_res/release/drawable-sl-night-v8/pay_with_googlepay_button_content.xml +0 -14
  742. package/android/build/intermediates/packaged_res/release/drawable-sr/pay_with_googlepay_button_content.xml +0 -14
  743. package/android/build/intermediates/packaged_res/release/drawable-sr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  744. package/android/build/intermediates/packaged_res/release/drawable-sv/pay_with_googlepay_button_content.xml +0 -14
  745. package/android/build/intermediates/packaged_res/release/drawable-sv-night-v8/pay_with_googlepay_button_content.xml +0 -14
  746. package/android/build/intermediates/packaged_res/release/drawable-th/pay_with_googlepay_button_content.xml +0 -14
  747. package/android/build/intermediates/packaged_res/release/drawable-th-night-v8/pay_with_googlepay_button_content.xml +0 -14
  748. package/android/build/intermediates/packaged_res/release/drawable-tr/pay_with_googlepay_button_content.xml +0 -14
  749. package/android/build/intermediates/packaged_res/release/drawable-tr-night-v8/pay_with_googlepay_button_content.xml +0 -14
  750. package/android/build/intermediates/packaged_res/release/drawable-uk/pay_with_googlepay_button_content.xml +0 -14
  751. package/android/build/intermediates/packaged_res/release/drawable-uk-night-v8/pay_with_googlepay_button_content.xml +0 -14
  752. package/android/build/intermediates/packaged_res/release/drawable-v21/googlepay_button_background.xml +0 -21
  753. package/android/build/intermediates/packaged_res/release/drawable-v21/googlepay_button_no_shadow_background.xml +0 -21
  754. package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_background_image.9.png +0 -0
  755. package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  756. package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  757. package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  758. package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  759. package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  760. package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_background_image.9.png +0 -0
  761. package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  762. package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  763. package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  764. package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  765. package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  766. package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_background_image.9.png +0 -0
  767. package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
  768. package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
  769. package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
  770. package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
  771. package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
  772. package/android/build/intermediates/packaged_res/release/drawable-zh/pay_with_googlepay_button_content.xml +0 -15
  773. package/android/build/intermediates/packaged_res/release/layout/googlepay_button.xml +0 -31
  774. package/android/build/intermediates/packaged_res/release/layout/googlepay_button_no_shadow.xml +0 -31
  775. package/android/build/intermediates/packaged_res/release/layout/pay_with_googlepay_button.xml +0 -31
  776. package/android/build/intermediates/packaged_res/release/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
  777. package/android/build/intermediates/packaged_res/release/layout-night-v8/googlepay_button.xml +0 -31
  778. package/android/build/intermediates/packaged_res/release/layout-night-v8/pay_with_googlepay_button.xml +0 -31
  779. package/android/build/intermediates/packaged_res/release/values/values.xml +0 -12
  780. package/android/build/intermediates/packaged_res/release/values-night-v8/values-night-v8.xml +0 -12
  781. package/android/build/intermediates/runtime_library_classes_jar/debug/classes.jar +0 -0
  782. package/android/build/intermediates/runtime_library_classes_jar/release/classes.jar +0 -0
  783. package/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt +0 -5613
  784. package/android/build/intermediates/symbol_list_with_package_name/release/package-aware-r.txt +0 -5613
  785. package/android/build/kotlin/compileDebugKotlin/build-history.bin +0 -0
  786. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab +0 -0
  787. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream +0 -0
  788. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len +0 -0
  789. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len +0 -0
  790. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values +0 -0
  791. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at +0 -0
  792. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.s +0 -1
  793. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i +0 -0
  794. package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len +0 -0
  795. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab +0 -0
  796. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +0 -0
  797. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +0 -0
  798. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len +0 -0
  799. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +0 -0
  800. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i +0 -0
  801. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +0 -0
  802. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +0 -0
  803. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +0 -0
  804. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +0 -0
  805. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +0 -0
  806. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +0 -0
  807. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +0 -0
  808. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +0 -0
  809. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab +0 -0
  810. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream +0 -0
  811. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len +0 -0
  812. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len +0 -0
  813. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at +0 -0
  814. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i +0 -0
  815. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len +0 -0
  816. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab +0 -0
  817. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +0 -0
  818. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +0 -0
  819. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +0 -0
  820. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +0 -0
  821. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +0 -0
  822. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +0 -0
  823. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab +0 -0
  824. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream +0 -0
  825. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +0 -0
  826. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len +0 -0
  827. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at +0 -0
  828. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i +0 -0
  829. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len +0 -0
  830. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab +0 -0
  831. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream +0 -0
  832. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len +0 -0
  833. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len +0 -0
  834. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values +0 -0
  835. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at +0 -0
  836. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.s +0 -1
  837. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i +0 -0
  838. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len +0 -0
  839. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab +0 -0
  840. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +0 -0
  841. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +0 -0
  842. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len +0 -0
  843. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +0 -0
  844. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i +0 -0
  845. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +0 -0
  846. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab +0 -0
  847. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream +0 -0
  848. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +0 -0
  849. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len +0 -0
  850. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at +0 -0
  851. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i +0 -0
  852. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len +0 -0
  853. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab +0 -0
  854. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream +0 -0
  855. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +0 -0
  856. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len +0 -0
  857. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at +0 -0
  858. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i +0 -0
  859. package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len +0 -0
  860. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab +0 -2
  861. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab +0 -0
  862. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream +0 -0
  863. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len +0 -0
  864. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len +0 -0
  865. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at +0 -0
  866. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i +0 -0
  867. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len +0 -0
  868. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab +0 -0
  869. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream +0 -0
  870. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len +0 -0
  871. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len +0 -0
  872. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at +0 -0
  873. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i +0 -0
  874. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len +0 -0
  875. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab +0 -0
  876. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream +0 -0
  877. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len +0 -0
  878. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len +0 -0
  879. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values +0 -0
  880. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at +0 -0
  881. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.s +0 -1
  882. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i +0 -0
  883. package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len +0 -0
  884. package/android/build/kotlin/compileDebugKotlin/last-build.bin +0 -0
  885. package/android/build/kotlin/compileReleaseKotlin/build-history.bin +0 -0
  886. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab +0 -0
  887. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream +0 -0
  888. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len +0 -0
  889. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.len +0 -0
  890. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.values.at +0 -0
  891. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i +0 -0
  892. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i.len +0 -0
  893. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab +0 -0
  894. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +0 -0
  895. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +0 -0
  896. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len +0 -0
  897. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +0 -0
  898. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i +0 -0
  899. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +0 -0
  900. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +0 -0
  901. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +0 -0
  902. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +0 -0
  903. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +0 -0
  904. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +0 -0
  905. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +0 -0
  906. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +0 -0
  907. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab +0 -0
  908. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream +0 -0
  909. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len +0 -0
  910. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.len +0 -0
  911. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at +0 -0
  912. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i +0 -0
  913. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len +0 -0
  914. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab +0 -0
  915. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +0 -0
  916. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +0 -0
  917. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +0 -0
  918. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +0 -0
  919. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +0 -0
  920. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +0 -0
  921. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab +0 -0
  922. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream +0 -0
  923. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +0 -0
  924. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len +0 -0
  925. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at +0 -0
  926. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i +0 -0
  927. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len +0 -0
  928. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab +0 -0
  929. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream +0 -0
  930. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len +0 -0
  931. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.len +0 -0
  932. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at +0 -0
  933. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i +0 -0
  934. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len +0 -0
  935. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab +0 -0
  936. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +0 -0
  937. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +0 -0
  938. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len +0 -0
  939. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +0 -0
  940. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i +0 -0
  941. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +0 -0
  942. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab +0 -0
  943. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream +0 -0
  944. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +0 -0
  945. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len +0 -0
  946. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at +0 -0
  947. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i +0 -0
  948. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len +0 -0
  949. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab +0 -0
  950. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream +0 -0
  951. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +0 -0
  952. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len +0 -0
  953. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at +0 -0
  954. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i +0 -0
  955. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len +0 -0
  956. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/counters.tab +0 -2
  957. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab +0 -0
  958. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream +0 -0
  959. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len +0 -0
  960. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.len +0 -0
  961. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.values.at +0 -0
  962. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i +0 -0
  963. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i.len +0 -0
  964. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab +0 -0
  965. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream +0 -0
  966. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len +0 -0
  967. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.len +0 -0
  968. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.values.at +0 -0
  969. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i +0 -0
  970. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i.len +0 -0
  971. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab +0 -0
  972. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream +0 -0
  973. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream.len +0 -0
  974. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.len +0 -0
  975. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values +0 -0
  976. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values.at +0 -0
  977. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values.s +0 -1
  978. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i +0 -0
  979. package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i.len +0 -0
  980. package/android/build/kotlin/compileReleaseKotlin/last-build.bin +0 -0
  981. package/android/build/outputs/logs/manifest-merger-debug-report.txt +0 -25
  982. package/android/build/outputs/logs/manifest-merger-release-report.txt +0 -25
  983. package/android/build/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt +0 -10
  984. package/android/build/tmp/compileReleaseJavaWithJavac/source-classes-mapping.txt +0 -10
  985. package/android/build/tmp/kotlin-classes/debug/META-INF/reactnativestripesdk_debug.kotlin_module +0 -0
  986. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/AuBECSDebitFormView$setListeners$1.class +0 -0
  987. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/AuBECSDebitFormView.class +0 -0
  988. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/AuBECSDebitFormViewManager.class +0 -0
  989. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardChangedEvent$Companion.class +0 -0
  990. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardChangedEvent.class +0 -0
  991. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$2.class +0 -0
  992. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$3.class +0 -0
  993. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$4.class +0 -0
  994. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$5.class +0 -0
  995. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$6.class +0 -0
  996. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView.class +0 -0
  997. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldViewManager.class +0 -0
  998. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFocusEvent$Companion.class +0 -0
  999. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFocusEvent.class +0 -0
  1000. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormCompleteEvent$Companion.class +0 -0
  1001. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormCompleteEvent.class +0 -0
  1002. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormView.class +0 -0
  1003. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormViewManager.class +0 -0
  1004. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ConfirmPaymentErrorType.class +0 -0
  1005. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ConfirmSetupIntentErrorType.class +0 -0
  1006. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ConstantsKt.class +0 -0
  1007. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CreateTokenErrorType.class +0 -0
  1008. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ErrorsKt.class +0 -0
  1009. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ExtensionsKt.class +0 -0
  1010. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/FormCompleteEvent$Companion.class +0 -0
  1011. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/FormCompleteEvent.class +0 -0
  1012. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayButtonManager$Companion.class +0 -0
  1013. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayButtonManager.class +0 -0
  1014. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayButtonView.class +0 -0
  1015. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayErrorType.class +0 -0
  1016. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$1.class +0 -0
  1017. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$2.class +0 -0
  1018. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$3.class +0 -0
  1019. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$4.class +0 -0
  1020. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment.class +0 -0
  1021. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayPaymentMethodLauncherFragment.class +0 -0
  1022. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/MappersKt$WhenMappings.class +0 -0
  1023. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/MappersKt.class +0 -0
  1024. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/NextPaymentActionErrorType.class +0 -0
  1025. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$WhenMappings.class +0 -0
  1026. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1$WhenMappings.class +0 -0
  1027. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1.class +0 -0
  1028. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment.class +0 -0
  1029. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentMethodCreateParamsException.class +0 -0
  1030. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentMethodCreateParamsFactory$WhenMappings.class +0 -0
  1031. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentMethodCreateParamsFactory.class +0 -0
  1032. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentSheetErrorType.class +0 -0
  1033. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentSheetFragment.class +0 -0
  1034. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentSheetFragmentKt.class +0 -0
  1035. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/RetrievePaymentIntentErrorType.class +0 -0
  1036. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/RetrieveSetupIntentErrorType.class +0 -0
  1037. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeContainerManager.class +0 -0
  1038. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeContainerView.class +0 -0
  1039. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$Companion.class +0 -0
  1040. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createPaymentMethod$1.class +0 -0
  1041. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createTokenForCVCUpdate$1.class +0 -0
  1042. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createTokenFromBankAccount$1.class +0 -0
  1043. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createTokenFromCard$1.class +0 -0
  1044. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$googlePayReceiver$1.class +0 -0
  1045. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1$onActivityResult$2$WhenMappings.class +0 -0
  1046. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1$onActivityResult$2.class +0 -0
  1047. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1.class +0 -0
  1048. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$mPaymentSheetReceiver$1.class +0 -0
  1049. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$retrievePaymentIntent$1.class +0 -0
  1050. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$retrieveSetupIntent$1.class +0 -0
  1051. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule.class +0 -0
  1052. package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkPackage.class +0 -0
  1053. package/android/build/tmp/kotlin-classes/release/META-INF/reactnativestripesdk_release.kotlin_module +0 -0
  1054. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/AuBECSDebitFormView$setListeners$1.class +0 -0
  1055. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/AuBECSDebitFormView.class +0 -0
  1056. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/AuBECSDebitFormViewManager.class +0 -0
  1057. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardChangedEvent$Companion.class +0 -0
  1058. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardChangedEvent.class +0 -0
  1059. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$2.class +0 -0
  1060. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$3.class +0 -0
  1061. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$4.class +0 -0
  1062. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$5.class +0 -0
  1063. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$6.class +0 -0
  1064. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView.class +0 -0
  1065. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldViewManager.class +0 -0
  1066. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFocusEvent$Companion.class +0 -0
  1067. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFocusEvent.class +0 -0
  1068. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormCompleteEvent$Companion.class +0 -0
  1069. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormCompleteEvent.class +0 -0
  1070. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormView.class +0 -0
  1071. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormViewManager.class +0 -0
  1072. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ConfirmPaymentErrorType.class +0 -0
  1073. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ConfirmSetupIntentErrorType.class +0 -0
  1074. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ConstantsKt.class +0 -0
  1075. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CreateTokenErrorType.class +0 -0
  1076. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ErrorsKt.class +0 -0
  1077. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ExtensionsKt.class +0 -0
  1078. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/FormCompleteEvent$Companion.class +0 -0
  1079. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/FormCompleteEvent.class +0 -0
  1080. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayButtonManager$Companion.class +0 -0
  1081. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayButtonManager.class +0 -0
  1082. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayButtonView.class +0 -0
  1083. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayErrorType.class +0 -0
  1084. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$1.class +0 -0
  1085. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$2.class +0 -0
  1086. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$3.class +0 -0
  1087. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$4.class +0 -0
  1088. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment.class +0 -0
  1089. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayPaymentMethodLauncherFragment.class +0 -0
  1090. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/MappersKt$WhenMappings.class +0 -0
  1091. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/MappersKt.class +0 -0
  1092. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/NextPaymentActionErrorType.class +0 -0
  1093. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1$WhenMappings.class +0 -0
  1094. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1.class +0 -0
  1095. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment.class +0 -0
  1096. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentMethodCreateParamsException.class +0 -0
  1097. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentMethodCreateParamsFactory$WhenMappings.class +0 -0
  1098. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentMethodCreateParamsFactory.class +0 -0
  1099. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentSheetErrorType.class +0 -0
  1100. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentSheetFragment.class +0 -0
  1101. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentSheetFragmentKt.class +0 -0
  1102. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/RetrievePaymentIntentErrorType.class +0 -0
  1103. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/RetrieveSetupIntentErrorType.class +0 -0
  1104. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeContainerManager.class +0 -0
  1105. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeContainerView.class +0 -0
  1106. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$Companion.class +0 -0
  1107. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createPaymentMethod$1.class +0 -0
  1108. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createTokenForCVCUpdate$1.class +0 -0
  1109. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createTokenFromBankAccount$1.class +0 -0
  1110. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createTokenFromCard$1.class +0 -0
  1111. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$googlePayReceiver$1.class +0 -0
  1112. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1$onActivityResult$2$WhenMappings.class +0 -0
  1113. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1$onActivityResult$2.class +0 -0
  1114. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1.class +0 -0
  1115. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$mPaymentSheetReceiver$1.class +0 -0
  1116. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$retrievePaymentIntent$1.class +0 -0
  1117. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$retrieveSetupIntent$1.class +0 -0
  1118. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule.class +0 -0
  1119. package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkPackage.class +0 -0
  1120. package/ios/.DS_Store +0 -0
  1121. package/lib/commonjs/types/Card.js +0 -2
  1122. package/lib/commonjs/types/Card.js.map +0 -1
  1123. package/lib/commonjs/types/PaymentIntents.js +0 -2
  1124. package/lib/commonjs/types/PaymentIntents.js.map +0 -1
  1125. package/lib/commonjs/types/PaymentMethods.js +0 -2
  1126. package/lib/commonjs/types/PaymentMethods.js.map +0 -1
  1127. package/lib/commonjs/types/components/AuBECSDebitForm.js +0 -2
  1128. package/lib/commonjs/types/components/AuBECSDebitForm.js.map +0 -1
  1129. package/lib/module/types/Card.js +0 -2
  1130. package/lib/module/types/Card.js.map +0 -1
  1131. package/lib/module/types/PaymentIntents.js +0 -2
  1132. package/lib/module/types/PaymentIntents.js.map +0 -1
  1133. package/lib/module/types/PaymentMethods.js +0 -2
  1134. package/lib/module/types/PaymentMethods.js.map +0 -1
  1135. package/lib/module/types/components/AuBECSDebitForm.js +0 -2
  1136. package/lib/module/types/components/AuBECSDebitForm.js.map +0 -1
  1137. package/lib/typescript/src/types/Card.d.ts +0 -42
  1138. package/lib/typescript/src/types/PaymentIntents.d.ts +0 -52
  1139. package/lib/typescript/src/types/PaymentMethods.d.ts +0 -193
  1140. package/lib/typescript/src/types/components/AuBECSDebitForm.d.ts +0 -28
  1141. package/src/types/Card.ts +0 -61
  1142. package/src/types/PaymentIntents.ts +0 -58
  1143. package/src/types/PaymentMethods.ts +0 -264
package/CHANGELOG.md CHANGED
@@ -1,5 +1,76 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.9.0
4
+
5
+ - [#913](https://github.com/stripe/stripe-react-native/pull/913) BREAKING CHANGE: Changed props for the `<AddToWalletButton />` component. Instead of passing `cardHolderName`, `cardLastFour`, `cardDescription`, and `cardBrand` directly as props, you will instead pass a `cardDetails` prop, which is an object containing the following fields:
6
+ - `primaryAccountIdentifier`: The `wallet.primary_account_identifier` value from the issued card.
7
+ - `name`: The card holder name (previously `cardHolderName`).
8
+ - `description`: A user-facing description of the card (previously `cardDescription`).
9
+ - `lastFour`: Last 4 digits of the card, optional (previously `cardLastFour`).
10
+ - `brand`: The card brand, optional (previously `cardBrand`).
11
+ - [#925](https://github.com/stripe/stripe-react-native/pull/925) Feat: `us_bank_account` payment method is now available in the payment sheet on iOS. (& Updated `stripe-ios` from 22.2.0 to 22.3.0)
12
+ - [#929](https://github.com/stripe/stripe-react-native/pull/929) Feat: added PayPal support (not currently supported for SetupIntents)
13
+ - [#928](https://github.com/stripe/stripe-react-native/pull/928) feat: expose 'cvc' when `dangerouslyGetCardDetails` is set to true
14
+ - [#931](https://github.com/stripe/stripe-react-native/pull/931) feat: add token & paymentMethodId handling to confirmPayment for Cards
15
+ - [#932](https://github.com/stripe/stripe-react-native/pull/932) fix: manually forward activity results to paymentLauncherFragment
16
+ - [#933](https://github.com/stripe/stripe-react-native/pull/933) fix: address "Can not perform this action after onSaveInstanceState" crashes on Android
17
+ - [#914](https://github.com/stripe/stripe-react-native/pull/914) fix: add `fingerprint` to Card result object on Android (already present on iOS)
18
+ - [#912](https://github.com/stripe/stripe-react-native/pull/912) fix: allow for providing zip code straight from `CardField` component on Android
19
+
20
+ ## 0.8.0
21
+
22
+ - **Breaking: This version requires you use `react-native@0.64.0` or above**
23
+ - [#902](https://github.com/stripe/stripe-react-native/pull/902) fix: create custom babel plugin for package.json imports in src/
24
+ - [#889](https://github.com/stripe/stripe-react-native/pull/889) Feat: add support for push provisioning (adding cards to native wallets)
25
+ - [#890](https://github.com/stripe/stripe-react-native/pull/890) BREAKING CHANGE: Changed parameters for: `createPaymentMethod`, `confirmPayment`, `confirmSetupIntent`, `collectBankAccountForPayment`, and `collectBankAccountForSetup`. Please read [this migration guide](./docs/upgrading-from-v0.7.0.md) for details.
26
+ - Renamed `type` field to `paymentMethodType` on `PaymentMethod.Result`, `PaymentIntent.Result`, and `SetupIntent.Result` (result of `createPaymentMethod`, `retrieveSetupIntent`, `confirmSetupIntent`, `confirmPayment`, `collectBankAccountForPayment`, `collectBankAccountForSetup`, `verifyMicrodepositsForPayment`, and `verifyMicrodepositsForSetup`).
27
+ - [#849](https://github.com/stripe/stripe-react-native/pull/849) BREAKING CHANGE: Renamed `placeholder` prop on `<CardField />` and `<CardForm />` to `placeholders`.
28
+ - [#849](https://github.com/stripe/stripe-react-native/pull/849) Feat: Added customized styling options to `<CardForm />` on Android.
29
+
30
+ ## 0.7.0
31
+
32
+ - [#894](https://github.com/stripe/stripe-react-native/pull/894) Fix: `<CardField />` `onBlur` callback will now be called appropriately on Android
33
+ - [#846](https://github.com/stripe/stripe-react-native/pull/846) Fix: Avoid crashes when `currentActivity` is null
34
+ - [#879](https://github.com/stripe/stripe-react-native/pull/879) Feat: Add support for ACHv2 payments on Android (already existed on iOS).
35
+ - [#879](https://github.com/stripe/stripe-react-native/pull/879) Chore: Upgraded `stripe-android` from v19.3.+ to v20.1.+
36
+ - [#837](https://github.com/stripe/stripe-react-native/pull/837) BREAKING CHANGE: Mostly fixes and changes to types, but some method's now accept slightly different parameters:
37
+ - Removed `setUrlSchemeOnAndroid` in favor of `setReturnUrlSchemeOnAndroid`. `setReturnUrlSchemeOnAndroid` functions exactly the same, this is just a rename.
38
+ - Removed `handleCardAction` in favor of `handleNextAction`. `handleNextAction` functions exactly the same, this is just a rename.
39
+ - `createPaymentMethod`'s `billingDetails` and `shippingDetails` parameters no longer accept the `addressPostalCode`, `addressCity`, `addressCountry`, `addressLine1`, `addressLine2`, or `addressState` keys. Instead, they accept an `address` object containing: `city`, `country`, `line1`, `line2`, `postalCode`, `state`.
40
+ - `confirmPayment`'s `billingDetails` and `shippingDetails` parameters no longer accept the `addressPostalCode`, `addressCity`, `addressCountry`, `addressLine1`, `addressLine2`, or `addressState` keys. Instead, they accept an `address` object containing: `city`, `country`, `line1`, `line2`, `postalCode`, `state`.
41
+ - `BillingDetails` no longer includes `addressPostalCode`, `addressCity`, `addressCountry`, `addressLine1`, `addressLine2`, or `addressState` keys. Instead, it includes an `address` object containing: `city`, `country`, `line1`, `line2`, `postalCode`, `state` keys.
42
+ - `ShippingDetails` no longer includes `addressPostalCode`, `addressCity`, `addressCountry`, `addressLine1`, `addressLine2`, or `addressState` keys. Instead, it includes an `address` object containing: `city`, `country`, `line1`, `line2`, `postalCode`, `state` keys.
43
+ - `PaymentIntents` was renamed `PaymentIntent`. (If you were using `PaymentIntents.Status`, now you must change it to `PaymentIntent.Status`)
44
+ - `SetupIntents` was renamed `SetupIntent`. (If you were using `SetupIntents.Status`, now you must change it to `SetupIntent.Status`)
45
+ - (Typescript) `Card.Token` is now `Token.Result`
46
+ - (Typescript) `Card.Brand` is now `Token.CardBrand`
47
+ - (Typescript) `Card.TokenType` is now `Token.Type`
48
+ - (Typescript) `Card.BankAccount` is now `Token.BankAccount`
49
+ - (Typescript) `Card.Params` is now `Token.Params`
50
+ - (Typescript) `CardFormView.Names` is now `CardFormView.FieldName`
51
+ - (Typescript) `CardFieldInput.Names` is now `CardFieldInput.FieldName`
52
+ - (Typescript) `ApplePayButtonComponent.Styles` is now `ApplePayButtonComponent.Style`
53
+ - (Typescript) `ApplePayButtonComponent.Types` is now `ApplePayButtonComponent.Type`
54
+ - (Typescript) `PaymentMethod` is now `PaymentMethod.Result`
55
+ - (Typescript) `PaymentIntent` is now `PaymentIntent.Result`
56
+ - (Typescript) `SetupIntent` is now `SetupIntent.Result`
57
+ - (Typescript) Exports that were under the `Card` namespace are now under `Token`
58
+ - (Typescript) `CreateTokenParams` is now `Token.CreateParams`
59
+ - (Typescript) `BankAcccountHolderType` is now `Token.BankAcccountHolderType`
60
+ - (Typescript) `ThreeDSecureConfigurationParams` is now `ThreeDSecure.ConfigurationParams`
61
+ - (Typescript) `PaymentMethodCreateParams.Params` is now `PaymentMethod.CreateParams`
62
+ - (Typescript) `PaymentMethodCreateParams.Options` is now `PaymentMethod.ConfirmOptions`
63
+ - (Typescript) `CreateTokenParams` is now `Token.CreateParams`
64
+ - (Typescript) `ConfirmSetupIntent.Params` is now `SetupIntent.ConfirmParams`
65
+ - (Typescript) `ConfirmSetupIntent.Options` is now `SetupIntent.ConfirmOptions`
66
+ - (Typescript) `confirmPayment` now accepts the `PaymentIntent.ConfirmParams` (same type, just renamed).
67
+ - (Typescript) `BillingDetails` type is now exported directly, instead of under the `PaymentMethodCreateParams` object.
68
+ - (Typescript) `presentGooglePay` now accepts `GooglePay.PresentParams`
69
+ - (Typescript) `GooglePay.PresentGooglePayParams` is now `GooglePay.PresentParams`
70
+ - (Typescript) `GooglePay.PresentGooglePayType` is now `GooglePay.PresentType`
71
+ - (Typescript) `GooglePay.IsGooglePaySupportedParams` is now `GooglePay.IsSupportedParams`
72
+ - (Typescript) Removed `GooglePay.SetupIntentParams`
73
+
3
74
  ## 0.6.0
4
75
 
5
76
  - [#861](https://github.com/stripe/stripe-react-native/pull/861) BREAKING: This library now supports iOS 12 and up, due to `stripe-ios` increasing the deployment target. If you would like to build for iOS 11, please continue to use `@stripe/stripe-react-native@0.5.0`.
package/README.md CHANGED
@@ -7,7 +7,7 @@ The Stripe React Native SDK allows you to build delightful payment experiences i
7
7
 
8
8
  ## Getting started
9
9
 
10
- Get started with our [📚 integration guides](https://stripe.com/docs/payments/accept-a-payment?platform=react-native) and [example project](#run-the-example-app), or [📘 browse the SDK reference](https://stripe.dev/stripe-react-native).
10
+ Get started with our [📚 integration guides](https://stripe.com/docs/payments/accept-a-payment?platform=react-native) and [example project](./CONTRIBUTING.md#running-the-example-app), or [📘 browse the SDK reference](https://stripe.dev/stripe-react-native).
11
11
 
12
12
  > Updating to a newer version of the SDK? See our [changelog](https://github.com/stripe/stripe-react-native/blob/master/CHANGELOG.md).
13
13
 
@@ -23,7 +23,7 @@ Get started with our [📚 integration guides](https://stripe.com/docs/payments/
23
23
 
24
24
  **Native UI**: We provide native screens and elements to securely collect payment details on Android and iOS.
25
25
 
26
- **PaymentSheet**: [Learn how to integrate](https://stripe.com/docs/payments/accept-a-payment) PaymentSheet, our new pre-built payments UI for mobile apps. PaymentSheet lets you accept cards, Apple Pay, Google Pay, and much more out of the box and also supports saving & reusing payment methods. PaymentSheet currently accepts the following payment methods: Card, Apple Pay, Google Pay, SEPA Debit, Bancontact, iDEAL, EPS, P24, Afterpay/Clearpay, Klarna, Giropay, and Sofort.
26
+ **PaymentSheet**: [Learn how to integrate](https://stripe.com/docs/payments/accept-a-payment) PaymentSheet, our new pre-built payments UI for mobile apps. PaymentSheet lets you accept cards, Apple Pay, Google Pay, and much more out of the box and also supports saving & reusing payment methods. PaymentSheet currently accepts the following payment methods: Card, Apple Pay, Google Pay, SEPA Debit, Bancontact, iDEAL, EPS, P24, Afterpay/Clearpay, Klarna, Giropay, Sofort, and ACH.
27
27
 
28
28
  #### Recommended usage
29
29
 
@@ -96,7 +96,7 @@ implementation 'com.google.android.material:material:<version>'
96
96
 
97
97
  #### iOS
98
98
 
99
- Compatible with apps targeting iOS 11 or above.
99
+ Compatible with apps targeting iOS 12 or above.
100
100
 
101
101
  The SDK uses TypeScript features available in Babel version `7.9.0` and above.
102
102
  Alternatively use the `plugin-transform-typescript` plugin in your project.
@@ -129,7 +129,7 @@ export default function PaymentScreen() {
129
129
  return (
130
130
  <CardField
131
131
  postalCodeEnabled={true}
132
- placeholder={{
132
+ placeholders={{
133
133
  number: '4242 4242 4242 4242',
134
134
  }}
135
135
  cardStyle={{
@@ -126,15 +126,24 @@ repositories {
126
126
  }
127
127
 
128
128
  def kotlin_version = getExtOrDefault('kotlinVersion')
129
+ def stripe_version = getExtOrDefault('stripeVersion')
129
130
 
130
131
  dependencies {
131
132
  // noinspection GradleDynamicVersion
132
133
  api 'com.facebook.react:react-native:+'
134
+ implementation 'com.github.bumptech.glide:glide:4.12.0'
133
135
  implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
134
136
  implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.3.1"
135
- implementation 'com.stripe:stripe-android:19.3.+'
137
+ implementation "com.stripe:stripe-android:$stripe_version"
138
+ implementation "com.stripe:connections:$stripe_version"
136
139
  implementation 'com.google.android.material:material:1.3.0'
137
- implementation 'androidx.appcompat:appcompat:1.2.0'
140
+ implementation 'androidx.appcompat:appcompat:1.4.1'
138
141
  implementation 'androidx.legacy:legacy-support-v4:1.0.0'
139
142
  implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0'
143
+
144
+ // play-services-wallet is already included in stripe-android
145
+ compileOnly "com.google.android.gms:play-services-wallet:19.1.0"
146
+
147
+ // Users need to declare this dependency on their own, otherwise all methods are a no-op
148
+ compileOnly 'com.stripe:stripe-android-issuing-push-provisioning:1.1.0'
140
149
  }
@@ -1 +1,2 @@
1
1
  StripeSdk_kotlinVersion=1.5.10
2
+ StripeSdk_stripeVersion=20.1.+
@@ -15,13 +15,11 @@ class AuBECSDebitFormViewManager : SimpleViewManager<AuBECSDebitFormView>() {
15
15
  }
16
16
 
17
17
  @ReactProp(name = "companyName")
18
- @SuppressWarnings("unused")
19
18
  fun setCompanyName(view: AuBECSDebitFormView, name: String?) {
20
19
  view.setCompanyName(name)
21
20
  }
22
21
 
23
22
  @ReactProp(name = "formStyle")
24
- @SuppressWarnings("unused")
25
23
  fun setFormStyle(view: AuBECSDebitFormView, style: ReadableMap) {
26
24
  view.setFormStyle(style)
27
25
  }
@@ -42,6 +42,7 @@ internal class CardChangedEvent constructor(viewTag: Int, private val cardDetail
42
42
 
43
43
  if (dangerouslyGetFullCardDetails) {
44
44
  eventData.putString("number", cardDetails["number"]?.toString()?.replace(" ", ""))
45
+ eventData.putString("cvc", cardDetails["cvc"]?.toString())
45
46
  }
46
47
 
47
48
  return eventData
@@ -23,18 +23,18 @@ import com.stripe.android.view.CardValidCallback
23
23
 
24
24
  class CardFieldView(context: ThemedReactContext) : FrameLayout(context) {
25
25
  private var mCardWidget: CardInputWidget = CardInputWidget(context)
26
+ private val cardInputWidgetBinding = CardInputWidgetBinding.bind(mCardWidget)
26
27
  val cardDetails: MutableMap<String, Any?> = mutableMapOf("brand" to "", "last4" to "", "expiryMonth" to null, "expiryYear" to null, "postalCode" to "", "validNumber" to "Unknown", "validCVC" to "Unknown", "validExpiryDate" to "Unknown")
27
28
  var cardParams: PaymentMethodCreateParams.Card? = null
28
29
  var cardAddress: Address? = null
29
30
  private var mEventDispatcher: EventDispatcher? = context.getNativeModule(UIManagerModule::class.java)?.eventDispatcher
30
31
  private var dangerouslyGetFullCardDetails: Boolean = false
32
+ private var currentFocusedField: String? = null
31
33
 
32
34
  init {
33
-
34
- val binding = CardInputWidgetBinding.bind(mCardWidget)
35
- binding.container.isFocusable = true
36
- binding.container.isFocusableInTouchMode = true
37
- binding.container.requestFocus()
35
+ cardInputWidgetBinding.container.isFocusable = true
36
+ cardInputWidgetBinding.container.isFocusableInTouchMode = true
37
+ cardInputWidgetBinding.container.requestFocus()
38
38
 
39
39
  addView(mCardWidget)
40
40
  setListeners()
@@ -44,37 +44,37 @@ class CardFieldView(context: ThemedReactContext) : FrameLayout(context) {
44
44
 
45
45
  fun setAutofocus(value: Boolean) {
46
46
  if (value) {
47
- val binding = CardInputWidgetBinding.bind(mCardWidget)
48
- binding.cardNumberEditText.requestFocus()
49
- binding.cardNumberEditText.showSoftKeyboard()
47
+ cardInputWidgetBinding.cardNumberEditText.requestFocus()
48
+ cardInputWidgetBinding.cardNumberEditText.showSoftKeyboard()
50
49
  }
51
50
  }
52
51
 
53
52
  fun requestFocusFromJS() {
54
- val binding = CardInputWidgetBinding.bind(mCardWidget)
55
- binding.cardNumberEditText.requestFocus()
56
- binding.cardNumberEditText.showSoftKeyboard()
53
+ cardInputWidgetBinding.cardNumberEditText.requestFocus()
54
+ cardInputWidgetBinding.cardNumberEditText.showSoftKeyboard()
57
55
  }
58
56
 
59
57
  fun requestBlurFromJS() {
60
- val binding = CardInputWidgetBinding.bind(mCardWidget)
61
- binding.cardNumberEditText.hideSoftKeyboard()
62
- binding.cardNumberEditText.clearFocus()
63
- binding.container.requestFocus()
58
+ cardInputWidgetBinding.cardNumberEditText.hideSoftKeyboard()
59
+ cardInputWidgetBinding.cardNumberEditText.clearFocus()
60
+ cardInputWidgetBinding.container.requestFocus()
64
61
  }
65
62
 
66
63
  fun requestClearFromJS() {
67
- val binding = CardInputWidgetBinding.bind(mCardWidget)
68
- binding.cardNumberEditText.setText("")
69
- binding.cvcEditText.setText("")
70
- binding.expiryDateEditText.setText("")
64
+ cardInputWidgetBinding.cardNumberEditText.setText("")
65
+ cardInputWidgetBinding.cvcEditText.setText("")
66
+ cardInputWidgetBinding.expiryDateEditText.setText("")
71
67
  if (mCardWidget.postalCodeEnabled) {
72
- binding.postalCodeEditText.setText("")
68
+ cardInputWidgetBinding.postalCodeEditText.setText("")
73
69
  }
74
70
  }
75
71
 
72
+ private fun onChangeFocus() {
73
+ mEventDispatcher?.dispatchEvent(
74
+ CardFocusEvent(id, currentFocusedField))
75
+ }
76
+
76
77
  fun setCardStyle(value: ReadableMap) {
77
- val binding = CardInputWidgetBinding.bind(mCardWidget)
78
78
  val borderWidth = getIntOrNull(value, "borderWidth")
79
79
  val backgroundColor = getValOr(value, "backgroundColor", null)
80
80
  val borderColor = getValOr(value, "borderColor", null)
@@ -85,7 +85,11 @@ class CardFieldView(context: ThemedReactContext) : FrameLayout(context) {
85
85
  val placeholderColor = getValOr(value, "placeholderColor", null)
86
86
  val textErrorColor = getValOr(value, "textErrorColor", null)
87
87
  val cursorColor = getValOr(value, "cursorColor", null)
88
- val bindings = setOf(binding.cardNumberEditText, binding.cvcEditText, binding.expiryDateEditText, binding.postalCodeEditText)
88
+ val bindings = setOf(
89
+ cardInputWidgetBinding.cardNumberEditText,
90
+ cardInputWidgetBinding.cvcEditText,
91
+ cardInputWidgetBinding.expiryDateEditText,
92
+ cardInputWidgetBinding.postalCodeEditText)
89
93
 
90
94
  textColor?.let {
91
95
  for (editTextBinding in bindings) {
@@ -148,23 +152,22 @@ class CardFieldView(context: ThemedReactContext) : FrameLayout(context) {
148
152
  }
149
153
 
150
154
  fun setPlaceHolders(value: ReadableMap) {
151
- val binding = CardInputWidgetBinding.bind(mCardWidget)
152
155
  val numberPlaceholder = getValOr(value, "number", null)
153
156
  val expirationPlaceholder = getValOr(value, "expiration", null)
154
157
  val cvcPlaceholder = getValOr(value, "cvc", null)
155
158
  val postalCodePlaceholder = getValOr(value, "postalCode", null)
156
159
 
157
160
  numberPlaceholder?.let {
158
- binding.cardNumberEditText.hint = it
161
+ cardInputWidgetBinding.cardNumberEditText.hint = it
159
162
  }
160
163
  expirationPlaceholder?.let {
161
- binding.expiryDateEditText.hint = it
164
+ cardInputWidgetBinding.expiryDateEditText.hint = it
162
165
  }
163
166
  cvcPlaceholder?.let {
164
167
  mCardWidget.setCvcLabel(it)
165
168
  }
166
169
  postalCodePlaceholder?.let {
167
- binding.postalCodeEditText.hint = it
170
+ cardInputWidgetBinding.postalCodeEditText.hint = it
168
171
  }
169
172
  }
170
173
 
@@ -180,7 +183,7 @@ class CardFieldView(context: ThemedReactContext) : FrameLayout(context) {
180
183
  return cardDetails
181
184
  }
182
185
 
183
- fun onValidCardChange() {
186
+ private fun onValidCardChange() {
184
187
  mCardWidget.paymentMethodCard?.let {
185
188
  cardParams = it
186
189
  cardAddress = Address.Builder()
@@ -207,6 +210,23 @@ class CardFieldView(context: ThemedReactContext) : FrameLayout(context) {
207
210
  }
208
211
 
209
212
  private fun setListeners() {
213
+ cardInputWidgetBinding.cardNumberEditText.setOnFocusChangeListener { _, hasFocus ->
214
+ currentFocusedField = if (hasFocus) CardInputListener.FocusField.CardNumber.name else null
215
+ onChangeFocus()
216
+ }
217
+ cardInputWidgetBinding.expiryDateEditText.setOnFocusChangeListener { _, hasFocus ->
218
+ currentFocusedField = if (hasFocus) CardInputListener.FocusField.ExpiryDate.name else null
219
+ onChangeFocus()
220
+ }
221
+ cardInputWidgetBinding.cvcEditText.setOnFocusChangeListener { _, hasFocus ->
222
+ currentFocusedField = if (hasFocus) CardInputListener.FocusField.Cvc.name else null
223
+ onChangeFocus()
224
+ }
225
+ cardInputWidgetBinding.postalCodeEditText.setOnFocusChangeListener { _, hasFocus ->
226
+ currentFocusedField = if (hasFocus) CardInputListener.FocusField.PostalCode.name else null
227
+ onChangeFocus()
228
+ }
229
+
210
230
  mCardWidget.setCardValidCallback { isValid, invalidFields ->
211
231
  cardDetails["validNumber"] = if (invalidFields.contains(CardValidCallback.Fields.Number)) "Invalid" else "Valid"
212
232
  cardDetails["validCVC"] = if (invalidFields.contains(CardValidCallback.Fields.Cvc)) "Invalid" else "Valid"
@@ -224,13 +244,7 @@ class CardFieldView(context: ThemedReactContext) : FrameLayout(context) {
224
244
  override fun onExpirationComplete() {}
225
245
  override fun onCvcComplete() {}
226
246
  override fun onPostalCodeComplete() {}
227
-
228
- override fun onFocusChange(focusField: CardInputListener.FocusField) {
229
- if (mEventDispatcher != null) {
230
- mEventDispatcher?.dispatchEvent(
231
- CardFocusEvent(id, focusField.name))
232
- }
233
- }
247
+ override fun onFocusChange(focusField: CardInputListener.FocusField) {}
234
248
  })
235
249
 
236
250
  mCardWidget.setExpiryDateTextWatcher(object : TextWatcher {
@@ -272,6 +286,9 @@ class CardFieldView(context: ThemedReactContext) : FrameLayout(context) {
272
286
  override fun beforeTextChanged(p0: CharSequence?, p1: Int, p2: Int, p3: Int) {}
273
287
  override fun afterTextChanged(p0: Editable?) {}
274
288
  override fun onTextChanged(var1: CharSequence?, var2: Int, var3: Int, var4: Int) {
289
+ if (dangerouslyGetFullCardDetails) {
290
+ cardDetails["cvc"] = var1.toString()
291
+ }
275
292
  sendCardDetailsEvent()
276
293
  }
277
294
  })
@@ -27,33 +27,28 @@ class CardFieldViewManager : SimpleViewManager<CardFieldView>() {
27
27
  }
28
28
 
29
29
  @ReactProp(name = "dangerouslyGetFullCardDetails")
30
- @SuppressWarnings("unused")
31
30
  fun setDangerouslyGetFullCardDetails(view: CardFieldView, dangerouslyGetFullCardDetails: Boolean = false) {
32
31
  view.setDangerouslyGetFullCardDetails(dangerouslyGetFullCardDetails)
33
32
  }
34
33
 
35
34
  @ReactProp(name = "postalCodeEnabled")
36
- @SuppressWarnings("unused")
37
35
  fun setPostalCodeEnabled(view: CardFieldView, postalCodeEnabled: Boolean = true) {
38
36
  view.setPostalCodeEnabled(postalCodeEnabled)
39
37
  }
40
38
 
41
39
  @ReactProp(name = "autofocus")
42
- @SuppressWarnings("unused")
43
40
  fun setAutofocus(view: CardFieldView, autofocus: Boolean = false) {
44
41
  view.setAutofocus(autofocus)
45
42
  }
46
43
 
47
44
  @ReactProp(name = "cardStyle")
48
- @SuppressWarnings("unused")
49
45
  fun setCardStyle(view: CardFieldView, cardStyle: ReadableMap) {
50
46
  view.setCardStyle(cardStyle)
51
47
  }
52
48
 
53
- @ReactProp(name = "placeholder")
54
- @SuppressWarnings("unused")
55
- fun setPlaceHolders(view: CardFieldView, placeholder: ReadableMap) {
56
- view.setPlaceHolders(placeholder)
49
+ @ReactProp(name = "placeholders")
50
+ fun setPlaceHolders(view: CardFieldView, placeholders: ReadableMap) {
51
+ view.setPlaceHolders(placeholders)
57
52
  }
58
53
 
59
54
  override fun createViewInstance(reactContext: ThemedReactContext): CardFieldView {
@@ -30,6 +30,7 @@ internal class CardFormCompleteEvent constructor(viewTag: Int, private val cardD
30
30
 
31
31
  if (dangerouslyGetFullCardDetails) {
32
32
  eventData.putString("number", cardDetails["number"]?.toString()?.replace(" ", ""))
33
+ eventData.putString("cvc", cardDetails["cvc"]?.toString())
33
34
  }
34
35
 
35
36
  return eventData
@@ -2,6 +2,8 @@ package com.reactnativestripesdk
2
2
 
3
3
  import android.content.res.ColorStateList
4
4
  import android.graphics.Color
5
+ import android.graphics.Typeface
6
+ import android.os.Build
5
7
  import android.view.View
6
8
  import android.view.View.OnFocusChangeListener
7
9
  import android.widget.FrameLayout
@@ -9,7 +11,9 @@ import com.facebook.react.bridge.ReadableMap
9
11
  import com.facebook.react.uimanager.ThemedReactContext
10
12
  import com.facebook.react.uimanager.UIManagerModule
11
13
  import com.facebook.react.uimanager.events.EventDispatcher
14
+ import com.google.android.material.shape.CornerFamily
12
15
  import com.google.android.material.shape.MaterialShapeDrawable
16
+ import com.google.android.material.shape.ShapeAppearanceModel
13
17
  import com.stripe.android.databinding.CardMultilineWidgetBinding
14
18
  import com.stripe.android.databinding.StripeCardFormViewBinding
15
19
  import com.stripe.android.model.Address
@@ -38,35 +42,31 @@ class CardFormView(context: ThemedReactContext) : FrameLayout(context) {
38
42
  }
39
43
 
40
44
  fun setPostalCodeEnabled(value: Boolean) {
41
- val cardFormView = StripeCardFormViewBinding.bind(cardForm)
42
45
  val visibility = if (value) View.VISIBLE else View.GONE
43
46
 
44
- cardFormView.cardMultilineWidget.postalCodeRequired = false
45
- cardFormView.postalCodeContainer.visibility = visibility
47
+ cardFormViewBinding.cardMultilineWidget.postalCodeRequired = false
48
+ cardFormViewBinding.postalCodeContainer.visibility = visibility
46
49
  }
47
50
 
48
- // TODO: uncomment when ios-sdk allows for this
49
- // fun setPlaceHolders(value: ReadableMap) {
50
- // val cardFormView = StripeCardFormViewBinding.bind(cardForm)
51
- //
52
- // val numberPlaceholder = getValOr(value, "number", null)
53
- // val expirationPlaceholder = getValOr(value, "expiration", null)
54
- // val cvcPlaceholder = getValOr(value, "cvc", null)
55
- // val postalCodePlaceholder = getValOr(value, "postalCode", null)
56
- //
57
- // numberPlaceholder?.let {
58
- //// multilineWidgetBinding.tlCardNumber.hint = it
59
- // }
60
- // expirationPlaceholder?.let {
61
- // multilineWidgetBinding.tlExpiry.hint = it
62
- // }
63
- // cvcPlaceholder?.let {
64
- // multilineWidgetBinding.tlCvc.hint = it
65
- // }
66
- // postalCodePlaceholder?.let {
67
- // cardFormView.postalCodeContainer.hint = it
68
- // }
69
- // }
51
+ fun setPlaceHolders(value: ReadableMap) {
52
+ val numberPlaceholder = getValOr(value, "number", null)
53
+ val expirationPlaceholder = getValOr(value, "expiration", null)
54
+ val cvcPlaceholder = getValOr(value, "cvc", null)
55
+ val postalCodePlaceholder = getValOr(value, "postalCode", null)
56
+
57
+ numberPlaceholder?.let {
58
+ multilineWidgetBinding.tlCardNumber.hint = it
59
+ }
60
+ expirationPlaceholder?.let {
61
+ multilineWidgetBinding.tlExpiry.hint = it
62
+ }
63
+ cvcPlaceholder?.let {
64
+ multilineWidgetBinding.tlCvc.hint = it
65
+ }
66
+ postalCodePlaceholder?.let {
67
+ cardFormViewBinding.postalCodeContainer.hint = it
68
+ }
69
+ }
70
70
 
71
71
  fun setAutofocus(value: Boolean) {
72
72
  if (value) {
@@ -101,11 +101,81 @@ class CardFormView(context: ThemedReactContext) : FrameLayout(context) {
101
101
  }
102
102
 
103
103
  fun setCardStyle(value: ReadableMap) {
104
- val binding = StripeCardFormViewBinding.bind(cardForm)
105
104
  val backgroundColor = getValOr(value, "backgroundColor", null)
105
+ val textColor = getValOr(value, "textColor", null)
106
+ val borderWidth = getIntOrNull(value, "borderWidth")
107
+ val borderColor = getValOr(value, "borderColor", null)
108
+ val borderRadius = getIntOrNull(value, "borderRadius") ?: 0
109
+ val fontSize = getIntOrNull(value, "fontSize")
110
+ val fontFamily = getValOr(value, "fontFamily")
111
+ val placeholderColor = getValOr(value, "placeholderColor", null)
112
+ val textErrorColor = getValOr(value, "textErrorColor", null)
113
+ val cursorColor = getValOr(value, "cursorColor", null)
114
+
115
+ val editTextBindings = setOf(
116
+ cardFormViewBinding.cardMultilineWidget.cardNumberEditText,
117
+ cardFormViewBinding.cardMultilineWidget.cvcEditText,
118
+ cardFormViewBinding.cardMultilineWidget.expiryDateEditText,
119
+ cardFormViewBinding.postalCode
120
+ )
121
+
122
+ textColor?.let {
123
+ for (binding in editTextBindings) {
124
+ binding.setTextColor(Color.parseColor(it))
125
+ }
126
+ cardFormViewBinding.countryLayout.countryAutocomplete.setTextColor(Color.parseColor(it))
127
+ }
128
+ textErrorColor?.let {
129
+ for (binding in editTextBindings) {
130
+ binding.setErrorColor(Color.parseColor(it))
131
+ cardFormViewBinding.postalCode.setErrorColor(Color.parseColor(it))
132
+ }
133
+ }
134
+ placeholderColor?.let {
135
+ multilineWidgetBinding.tlExpiry.defaultHintTextColor = ColorStateList.valueOf(Color.parseColor(it))
136
+ multilineWidgetBinding.tlCardNumber.defaultHintTextColor = ColorStateList.valueOf(Color.parseColor(it))
137
+ multilineWidgetBinding.tlCvc.defaultHintTextColor = ColorStateList.valueOf(Color.parseColor(it))
138
+ cardFormViewBinding.postalCodeContainer.defaultHintTextColor = ColorStateList.valueOf(Color.parseColor(it))
139
+ }
140
+ fontSize?.let {
141
+ for (binding in editTextBindings) {
142
+ binding.textSize = it.toFloat()
143
+ }
144
+ }
145
+ fontFamily?.let {
146
+ for (binding in editTextBindings) {
147
+ binding.typeface = Typeface.create(it, Typeface.NORMAL)
148
+ }
149
+ }
150
+ cursorColor?.let {
151
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
152
+ val color = Color.parseColor(it)
153
+ for (binding in editTextBindings) {
154
+ binding.textCursorDrawable?.setTint(color)
155
+ binding.textSelectHandle?.setTint(color)
156
+ binding.textSelectHandleLeft?.setTint(color)
157
+ binding.textSelectHandleRight?.setTint(color)
158
+ binding.highlightColor = color
159
+ }
160
+ }
161
+ }
106
162
 
107
- binding.cardMultilineWidgetContainer.background = MaterialShapeDrawable().also { shape ->
163
+ cardFormViewBinding.cardMultilineWidgetContainer.setPadding(40, 0, 40, 0)
164
+ cardFormViewBinding.cardMultilineWidgetContainer.background = MaterialShapeDrawable(
165
+ ShapeAppearanceModel()
166
+ .toBuilder()
167
+ .setAllCorners(CornerFamily.ROUNDED, (borderRadius * 2).toFloat())
168
+ .build()
169
+ ).also { shape ->
170
+ shape.strokeWidth = 0.0f
171
+ shape.strokeColor = ColorStateList.valueOf(Color.parseColor("#000000"))
108
172
  shape.fillColor = ColorStateList.valueOf(Color.parseColor("#FFFFFF"))
173
+ borderWidth?.let {
174
+ shape.strokeWidth = (it * 2).toFloat()
175
+ }
176
+ borderColor?.let {
177
+ shape.strokeColor = ColorStateList.valueOf(Color.parseColor(it))
178
+ }
109
179
  backgroundColor?.let {
110
180
  shape.fillColor = ColorStateList.valueOf(Color.parseColor(it))
111
181
  }
@@ -132,6 +202,7 @@ class CardFormView(context: ThemedReactContext) : FrameLayout(context) {
132
202
 
133
203
  if (dangerouslyGetFullCardDetails) {
134
204
  cardDetails["number"] = cardParamsMap["number"] as String
205
+ cardDetails["cvc"] = cardParamsMap["cvc"] as String
135
206
  }
136
207
 
137
208
  mEventDispatcher?.dispatchEvent(
@@ -142,8 +213,7 @@ class CardFormView(context: ThemedReactContext) : FrameLayout(context) {
142
213
  .setCountry(it.address?.country)
143
214
  .build()
144
215
 
145
- val binding = StripeCardFormViewBinding.bind(cardForm)
146
- binding.cardMultilineWidget.paymentMethodCard?.let { params -> cardParams = params }
216
+ cardFormViewBinding.cardMultilineWidget.paymentMethodCard?.let { params -> cardParams = params }
147
217
  }
148
218
  } else {
149
219
  cardParams = null
@@ -27,30 +27,26 @@ class CardFormViewManager : SimpleViewManager<CardFormView>() {
27
27
  }
28
28
 
29
29
  @ReactProp(name = "dangerouslyGetFullCardDetails")
30
- @SuppressWarnings("unused")
31
30
  fun setDangerouslyGetFullCardDetails(view: CardFormView, dangerouslyGetFullCardDetails: Boolean = false) {
32
31
  view.setDangerouslyGetFullCardDetails(dangerouslyGetFullCardDetails)
33
32
  }
34
33
 
35
34
  @ReactProp(name = "postalCodeEnabled")
36
- @SuppressWarnings("unused")
37
35
  fun setPostalCodeEnabled(view: CardFormView, postalCodeEnabled: Boolean = false) {
38
36
  view.setPostalCodeEnabled(postalCodeEnabled)
39
37
  }
40
38
 
41
- // @ReactProp(name = "placeholder")
42
- // fun setPlaceHolders(view: CardFormView, placeholder: ReadableMap) {
43
- // view.setPlaceHolders(placeholder)
44
- // }
39
+ @ReactProp(name = "placeholders")
40
+ fun setPlaceHolders(view: CardFormView, placeholders: ReadableMap) {
41
+ view.setPlaceHolders(placeholders);
42
+ }
45
43
 
46
44
  @ReactProp(name = "autofocus")
47
- @SuppressWarnings("unused")
48
45
  fun setAutofocus(view: CardFormView, autofocus: Boolean = false) {
49
46
  view.setAutofocus(autofocus)
50
47
  }
51
48
 
52
49
  @ReactProp(name = "cardStyle")
53
- @SuppressWarnings("unused")
54
50
  fun setCardStyle(view: CardFormView, cardStyle: ReadableMap) {
55
51
  view.setCardStyle(cardStyle)
56
52
  }