@jimrising/easymerchantsdk-react-native 1.4.9 → 1.5.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 +1 -3
- package/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +1 -1
- package/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +0 -0
- package/android/build.gradle +5 -5
- package/ios/easymerchantsdk.podspec +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ To add the path of sdk in your project. Open your `package.json` file and inside
|
|
|
7
7
|
|
|
8
8
|
```json
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@jimrising/easymerchantsdk-react-native": "^1.
|
|
10
|
+
"@jimrising/easymerchantsdk-react-native": "^1.5.0"
|
|
11
11
|
},
|
|
12
12
|
```
|
|
13
13
|
|
|
@@ -16,7 +16,6 @@ or using command
|
|
|
16
16
|
npm i @jimrising/easymerchantsdk-react-native
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
|
|
20
19
|
## Changes in android side.
|
|
21
20
|
Now open your `android` folder and there is a `build.gradle` file. Open it and add the below code in it.
|
|
22
21
|
```gradle
|
|
@@ -25,7 +24,6 @@ allprojects {
|
|
|
25
24
|
google()
|
|
26
25
|
mavenCentral()
|
|
27
26
|
maven { url 'https://jitpack.io' }
|
|
28
|
-
maven { url 'https://maven.microblink.com' }
|
|
29
27
|
maven {
|
|
30
28
|
url = uri("https://maven.pkg.github.com/EasyMerchant/em-MobileCheckoutSDK-Android")
|
|
31
29
|
credentials {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Thu Jun 19 14:12:11 IST 2025
|
|
Binary file
|
package/android/build.gradle
CHANGED
|
@@ -39,18 +39,18 @@ repositories {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
dependencies {
|
|
42
|
-
implementation 'com.app:paysdk:1.2.
|
|
42
|
+
implementation 'com.app:paysdk:1.2.8'
|
|
43
43
|
implementation 'com.hbb20:ccp:2.7.3'
|
|
44
44
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1"
|
|
45
45
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1"
|
|
46
46
|
implementation 'com.github.androidmads:QRGenerator:1.0.1'
|
|
47
|
-
implementation('com.microblink:blinkcard:2.10.0@aar') {
|
|
48
|
-
transitive = true
|
|
49
|
-
}
|
|
47
|
+
// implementation('com.microblink:blinkcard:2.10.0@aar') {
|
|
48
|
+
// transitive = true
|
|
49
|
+
// }
|
|
50
50
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
51
51
|
implementation 'com.google.android.material:material:1.8.0'
|
|
52
52
|
implementation 'com.facebook.react:react-native:+'
|
|
53
|
-
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
|
|
53
|
+
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
|
|
54
54
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
|
|
55
55
|
implementation 'androidx.core:core-ktx:1.13.1'
|
|
56
56
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|