@capacitor-community/stripe-terminal 6.4.0-0 → 6.4.1-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -18,7 +18,18 @@ __Note: Stripe Web SDK is beta version. So this plugin's implement is experiment
18
18
 
19
19
  ### iOS
20
20
 
21
- - [iOS Configure your app](https://stripe.com/docs/terminal/payments/setup-integration?terminal-sdk-platform=ios#configure)
21
+ Stripe Terminal require development target 14.0 or later. Change Podfile( `ios/App/Podfile` ) like below:
22
+
23
+ ```diff
24
+ require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'
25
+
26
+ - platform :ios, '13.0'
27
+ + platform :ios, '14.0'
28
+ ```
29
+
30
+ Follow Stripe's documentation for other configuration items.
31
+
32
+ - [Stripe - iOS Configure your app](https://stripe.com/docs/terminal/payments/setup-integration?terminal-sdk-platform=ios#configure)
22
33
 
23
34
  ### Android
24
35
 
@@ -56,6 +67,22 @@ And update minSdkVersion to 26 And compileSdkVersion to 34 in your `android/app/
56
67
  + compileSdkVersion = 34
57
68
  ```
58
69
 
70
+ And add next block to `android/app/build.gradle`.
71
+
72
+ ```diff
73
+ + buildscript {
74
+ + ext.kotlin_version = '2.0.+'
75
+ + repositories {
76
+ + google()
77
+ + mavenCentral()
78
+ + }
79
+ + dependencies {
80
+ + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
81
+ + }
82
+ + }
83
+ + apply plugin: 'kotlin-android'
84
+ ```
85
+
59
86
  ## Usage
60
87
 
61
88
  ### Simple collect payment
@@ -11,7 +11,7 @@ ext {
11
11
  }
12
12
 
13
13
  buildscript {
14
- ext.kotlin_version = project.hasProperty("kotlin_version") ? rootProject.ext.kotlin_version : '1.8.20'
14
+ ext.kotlin_version = project.hasProperty("kotlin_version") ? rootProject.ext.kotlin_version : '2.0.+'
15
15
  repositories {
16
16
  google()
17
17
  mavenCentral()