react-native-moengage 10.0.0 → 10.1.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# 16-05-2024
|
|
2
|
+
|
|
3
|
+
## 10.1.0
|
|
4
|
+
- Support for Data Center 6
|
|
5
|
+
- Android
|
|
6
|
+
- `moe-android-sdk` version updated to `13.01.00`
|
|
7
|
+
- `inapp` version updated to `8.3.0`
|
|
8
|
+
|
|
9
|
+
# 14-05-2024
|
|
10
|
+
|
|
11
|
+
## 10.0.1
|
|
12
|
+
- BugFix
|
|
13
|
+
- Adding backward compatibility support for react-native version with react-native-moengage `10.x.x`
|
|
14
|
+
|
|
1
15
|
# 07-05-2024
|
|
2
16
|
|
|
3
17
|
## 10.0.0
|
|
@@ -23,7 +23,10 @@ Pod::Spec.new do |s|
|
|
|
23
23
|
echo "#define MOE_REACT_PLUGIN_VERSION @\\"#{package["version"]}\\"" >> iOS/MoEReactBridge/MoEngageReactPluginInfo.h
|
|
24
24
|
CMD
|
|
25
25
|
|
|
26
|
-
install_modules_dependencies(s)
|
|
27
|
-
|
|
28
26
|
|
|
27
|
+
if defined?(install_modules_dependencies()) != nil
|
|
28
|
+
install_modules_dependencies(s);
|
|
29
|
+
else
|
|
30
|
+
s.dependency "React-Core"
|
|
31
|
+
end
|
|
29
32
|
end
|
package/android/build.gradle
CHANGED
|
@@ -20,8 +20,8 @@ rootProject.allprojects {
|
|
|
20
20
|
|
|
21
21
|
ext {
|
|
22
22
|
//dependency version
|
|
23
|
-
moengageCoreVersion = "13.00
|
|
24
|
-
moengageInAppVersion = "8.
|
|
23
|
+
moengageCoreVersion = "13.01.00"
|
|
24
|
+
moengageInAppVersion = "8.3.0"
|
|
25
25
|
basePluginVersion = "4.0.0"
|
|
26
26
|
//build versions
|
|
27
27
|
minimumVersion = 21
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-moengage",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.1.0",
|
|
4
4
|
"description": "MoEngage is a mobile marketing automation company. This react-native SDK helps you track events, trigger smart notifications and in-apps, provides a drop-in Inbox Controller for notifications.",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"files": [
|