@jimrising/easymerchantsdk-react-native 1.9.5 → 1.9.7
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 +2 -11
- package/android/build/.transforms/15b6a8a60a6b32d0dcaf609723cf365b/transformed/classes/classes_dex/classes.dex +0 -0
- package/android/build/.transforms/8508f1428f740032c45a43f48b1bbe1e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/reactlibrary/RNEasymerchantsdkModule.dex +0 -0
- package/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +1 -1
- package/android/build.gradle +1 -8
- package/ios/Classes/EasyMerchantSdk.m +2 -4
- package/ios/easymerchantsdk.podspec +1 -1
- package/libs/easyMerchant-1.4.6.aar +0 -0
- 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.9.
|
|
10
|
+
"@jimrising/easymerchantsdk-react-native": "^1.9.7"
|
|
11
11
|
},
|
|
12
12
|
```
|
|
13
13
|
|
|
@@ -23,20 +23,11 @@ allprojects {
|
|
|
23
23
|
repositories {
|
|
24
24
|
google()
|
|
25
25
|
mavenCentral()
|
|
26
|
-
|
|
27
|
-
maven {
|
|
28
|
-
url = uri(properties.getProperty('GITHUB_URL'))
|
|
29
|
-
credentials {
|
|
30
|
-
username = properties.getProperty('GITHUB_USERNAME')
|
|
31
|
-
password = properties.getProperty('GITHUB_PASSWORD')
|
|
32
|
-
}
|
|
33
|
-
}
|
|
26
|
+
|
|
34
27
|
}
|
|
35
28
|
}
|
|
36
29
|
```
|
|
37
30
|
|
|
38
|
-
|
|
39
|
-
|
|
40
31
|
## Changes in IOS side.
|
|
41
32
|
Add below content inside the AppDelegate.swift File :-
|
|
42
33
|
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
#Thu Jul
|
|
1
|
+
#Thu Jul 24 11:21:35 IST 2025
|
package/android/build.gradle
CHANGED
|
@@ -29,17 +29,10 @@ android {
|
|
|
29
29
|
repositories {
|
|
30
30
|
mavenCentral()
|
|
31
31
|
maven { url 'https://jitpack.io' }
|
|
32
|
-
maven {
|
|
33
|
-
url = uri("https://maven.pkg.github.com/EasyMerchant/em-MobileCheckoutSDK-Android")
|
|
34
|
-
credentials {
|
|
35
|
-
username = "EasyMerchant"
|
|
36
|
-
password = "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"
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
32
|
}
|
|
40
33
|
|
|
41
34
|
dependencies {
|
|
42
|
-
implementation '
|
|
35
|
+
implementation fileTree(dir: '../libs', include: ['*.aar', '*.jar'], exclude: [])
|
|
43
36
|
implementation 'com.hbb20:ccp:2.7.3'
|
|
44
37
|
implementation 'com.github.bumptech.glide:glide:4.16.0'
|
|
45
38
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1"
|
|
@@ -2,11 +2,9 @@
|
|
|
2
2
|
#import <React/RCTLog.h>
|
|
3
3
|
#import <React/RCTBridgeModule.h>
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
//#import <easymerchantsdk-Swift.h>
|
|
6
6
|
#import <easymerchantsdk/easymerchantsdk-Swift.h>
|
|
7
|
-
|
|
8
|
-
#import "easymerchantsdk-Swift.h"
|
|
9
|
-
#endif
|
|
7
|
+
|
|
10
8
|
|
|
11
9
|
@interface EasyMerchantSdk ()
|
|
12
10
|
@property (nonatomic, strong) EasyMerchantSdkPlugin *sdkPluginInstance;
|
|
Binary file
|