@jimrising/easymerchantsdk-react-native 2.5.0 → 2.5.1
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/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/.yarnrc.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nodeLinker: node-modules
|
package/android/build.gradle
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
// Load config.properties for GitHub Packages credentials (GITHUB_USERNAME, GITHUB_PASSWORD)
|
|
2
|
+
def configFile = file("config.properties")
|
|
3
|
+
if (configFile.exists()) {
|
|
4
|
+
def config = new Properties()
|
|
5
|
+
configFile.withInputStream { config.load(it) }
|
|
6
|
+
config.each { key, value -> project.ext.set(key, value) }
|
|
7
|
+
}
|
|
8
|
+
|
|
1
9
|
buildscript {
|
|
2
10
|
ext.kotlinVersion = "1.9.10"
|
|
3
11
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# GitHub Packages credentials (only needed if resolving the Android SDK from GitHub Packages)
|
|
2
2
|
# Set your own values. Do not commit real credentials.
|
|
3
|
-
GITHUB_USERNAME=
|
|
4
|
-
GITHUB_PASSWORD=
|
|
5
3
|
GITHUB_URL=https://maven.pkg.github.com/EasyMerchant/em-MobileCheckoutSDK-Android
|
|
4
|
+
GITHUB_USERNAME=devpavany7
|
|
5
|
+
GITHUB_PASSWORD=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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jimrising/easymerchantsdk-react-native",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"react-native": "^0.76.4",
|
|
17
17
|
"react-native-windows": "^0.76.2"
|
|
18
18
|
},
|
|
19
|
-
"repository"
|
|
19
|
+
"repository": "https://github.com/EasyMerchant/em-MobileCheckoutSDK-ReactNative.git#dev-branch"
|
|
20
20
|
}
|