@tyrads.com/tyrads-sdk 3.3.1 → 3.3.2
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/android/build.gradle
CHANGED
|
@@ -112,6 +112,6 @@ dependencies {
|
|
|
112
112
|
implementation "com.facebook.react:react-native:+"
|
|
113
113
|
implementation 'com.google.code.gson:gson:+'
|
|
114
114
|
|
|
115
|
-
implementation 'com.github.tyrads-com:tyrads-sdk-android:
|
|
115
|
+
implementation 'com.github.tyrads-com:tyrads-sdk-android:5e23b9fe3e'
|
|
116
116
|
}
|
|
117
117
|
|
|
@@ -8,8 +8,8 @@ class AcmoConfig {
|
|
|
8
8
|
static API_VERSION = "3.0";
|
|
9
9
|
static MAJOR_VERSION = "3";
|
|
10
10
|
static MINOR_VERSION = "3";
|
|
11
|
-
static PATCH_VERSION = "
|
|
12
|
-
static BUILD_VERSION = "
|
|
11
|
+
static PATCH_VERSION = "2";
|
|
12
|
+
static BUILD_VERSION = "2";
|
|
13
13
|
static SDK_PLATFORM = "React Native";
|
|
14
14
|
static SDK_VERSION = `${this.MAJOR_VERSION}.${this.MINOR_VERSION}.${this.PATCH_VERSION}-${this.BUILD_VERSION}`;
|
|
15
15
|
}
|
|
@@ -4,8 +4,8 @@ export class AcmoConfig {
|
|
|
4
4
|
static API_VERSION = "3.0";
|
|
5
5
|
static MAJOR_VERSION = "3";
|
|
6
6
|
static MINOR_VERSION = "3";
|
|
7
|
-
static PATCH_VERSION = "
|
|
8
|
-
static BUILD_VERSION = "
|
|
7
|
+
static PATCH_VERSION = "2";
|
|
8
|
+
static BUILD_VERSION = "2";
|
|
9
9
|
static SDK_PLATFORM = "React Native";
|
|
10
10
|
static SDK_VERSION = `${this.MAJOR_VERSION}.${this.MINOR_VERSION}.${this.PATCH_VERSION}-${this.BUILD_VERSION}`;
|
|
11
11
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tyrads.com/tyrads-sdk",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.2",
|
|
4
4
|
"description": "Tyrads SDK for React Native ",
|
|
5
5
|
"source": "./src/index.tsx",
|
|
6
6
|
"main": "./lib/commonjs/index.js",
|
|
@@ -192,4 +192,4 @@
|
|
|
192
192
|
"@react-native-async-storage/async-storage": "^2.1.2",
|
|
193
193
|
"axios": "^1.8.1"
|
|
194
194
|
}
|
|
195
|
-
}
|
|
195
|
+
}
|
package/src/acmo_config.ts
CHANGED
|
@@ -2,8 +2,8 @@ export class AcmoConfig {
|
|
|
2
2
|
public static API_VERSION = "3.0";
|
|
3
3
|
public static MAJOR_VERSION = "3";
|
|
4
4
|
public static MINOR_VERSION = "3";
|
|
5
|
-
public static PATCH_VERSION = "
|
|
6
|
-
public static BUILD_VERSION = "
|
|
5
|
+
public static PATCH_VERSION = "2";
|
|
6
|
+
public static BUILD_VERSION = "2";
|
|
7
7
|
public static SDK_PLATFORM = "React Native";
|
|
8
8
|
public static SDK_VERSION = `${this.MAJOR_VERSION}.${this.MINOR_VERSION}.${this.PATCH_VERSION}-${this.BUILD_VERSION}`;
|
|
9
9
|
}
|