react-native-netmera 1.7.7 → 1.7.8-beta01
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
3
|
android {
|
|
4
|
-
compileSdk
|
|
4
|
+
compileSdk 34
|
|
5
5
|
|
|
6
6
|
// Conditional for compatibility with AGP <4.2.
|
|
7
7
|
if (project.android.hasProperty("namespace")) {
|
|
@@ -9,7 +9,7 @@ android {
|
|
|
9
9
|
}
|
|
10
10
|
defaultConfig {
|
|
11
11
|
minSdkVersion 21
|
|
12
|
-
targetSdkVersion
|
|
12
|
+
targetSdkVersion 34
|
|
13
13
|
versionCode 1
|
|
14
14
|
versionName "1.0"
|
|
15
15
|
}
|
|
@@ -19,8 +19,8 @@ android {
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
dependencies {
|
|
22
|
-
implementation 'com.netmera:nmcore:3.14.
|
|
23
|
-
implementation 'com.netmera:nmfcm:3.
|
|
24
|
-
implementation 'com.netmera:nmhms:3.
|
|
22
|
+
implementation 'com.netmera:nmcore:3.14.3'
|
|
23
|
+
implementation 'com.netmera:nmfcm:3.13.0'
|
|
24
|
+
implementation 'com.netmera:nmhms:3.12.0'
|
|
25
25
|
implementation 'com.facebook.react:react-native:+'
|
|
26
26
|
}
|
|
@@ -23,7 +23,7 @@ public class RNNetmera {
|
|
|
23
23
|
static void setNetmeraHeaders() {
|
|
24
24
|
ContentValues headerValues = new ContentValues();
|
|
25
25
|
headerValues.put("X-netmera-framework", "react");
|
|
26
|
-
headerValues.put("X-netmera-frameworkV", "1.7.
|
|
26
|
+
headerValues.put("X-netmera-frameworkV", "1.7.8");
|
|
27
27
|
Netmera.setNetmeraHeaders(headerValues);
|
|
28
28
|
}
|
|
29
29
|
|
package/ios/RNNetmera.m
CHANGED
|
@@ -55,7 +55,7 @@ NSString *const ERROR_MESSAGE_UPDATE_USER = @"Error occurred while updating user
|
|
|
55
55
|
|
|
56
56
|
+ (void)setNetmeraHeaders {
|
|
57
57
|
[Netmera setFramework:@"react"];
|
|
58
|
-
[Netmera setFrameworkVersion:@"1.7.
|
|
58
|
+
[Netmera setFrameworkVersion:@"1.7.8"];
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
+ (void)setPushDelegate:(NSObject<NetmeraPushDelegate> *)delegate {
|