react-native-moengage 12.3.0 → 12.4.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
|
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
|
|
|
17
17
|
s.public_header_files = 'iOS/MoEReactBridge/{MoEngageInitializer,MoEngageReactSDKInitializationConfig,MoEngageReactUtils}.h'
|
|
18
18
|
s.weak_framework = 'UserNotifications'
|
|
19
19
|
s.dependency 'React'
|
|
20
|
-
s.dependency 'MoEngagePluginBase','6.
|
|
20
|
+
s.dependency 'MoEngagePluginBase','6.7.0'
|
|
21
21
|
s.ios.dependency 'MoEngage-iOS-SDK/RichNotification'
|
|
22
22
|
|
|
23
23
|
s.prepare_command = <<-CMD
|
|
@@ -7,15 +7,8 @@ repositories {
|
|
|
7
7
|
|
|
8
8
|
ext {
|
|
9
9
|
// MoEngage Versions
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
moengageRichNotification = "6.2.1"
|
|
13
|
-
moengageSecurity = "4.0.0"
|
|
14
|
-
moengageEncryptedStorage = "3.0.0"
|
|
15
|
-
moengagePushAmp = "6.1.1"
|
|
16
|
-
moengageHmsPushkit = "6.1.1"
|
|
17
|
-
moengageDeviceTrigger = "4.1.1"
|
|
18
|
-
moengageBasePluginVersion = "5.1.3"
|
|
10
|
+
moengageNativeBOMVersion = "1.1.1"
|
|
11
|
+
moengagePluginBaseBOMVersion = "1.1.0"
|
|
19
12
|
|
|
20
13
|
// AndroidX Support Libraries Versions
|
|
21
14
|
androidXCore = "1.15.0"
|
|
@@ -24,29 +17,32 @@ ext {
|
|
|
24
17
|
}
|
|
25
18
|
|
|
26
19
|
dependencies {
|
|
27
|
-
|
|
28
|
-
api("com.moengage:
|
|
29
|
-
|
|
20
|
+
implementation(platform("com.moengage:plugin-base-bom:$moengagePluginBaseBOMVersion"))
|
|
21
|
+
api("com.moengage:plugin-base")
|
|
22
|
+
|
|
23
|
+
implementation(platform("com.moengage:android-bom:$moengageNativeBOMVersion"))
|
|
24
|
+
api("com.moengage:moe-android-sdk")
|
|
25
|
+
api("com.moengage:inapp")
|
|
30
26
|
|
|
31
27
|
if (shouldIncludeModule("richNotification")) {
|
|
32
|
-
api("com.moengage:rich-notification
|
|
28
|
+
api("com.moengage:rich-notification")
|
|
33
29
|
}
|
|
34
30
|
|
|
35
31
|
if (shouldIncludeModule("encryption")) {
|
|
36
|
-
api("com.moengage:security
|
|
37
|
-
api("com.moengage:encrypted-storage
|
|
32
|
+
api("com.moengage:security")
|
|
33
|
+
api("com.moengage:encrypted-storage")
|
|
38
34
|
}
|
|
39
35
|
|
|
40
36
|
if (shouldIncludeModule("pushAmp")) {
|
|
41
|
-
api("com.moengage:push-amp
|
|
37
|
+
api("com.moengage:push-amp")
|
|
42
38
|
}
|
|
43
39
|
|
|
44
40
|
if (shouldIncludeModule("hmsPushkit")) {
|
|
45
|
-
api("com.moengage:hms-pushkit
|
|
41
|
+
api("com.moengage:hms-pushkit")
|
|
46
42
|
}
|
|
47
43
|
|
|
48
44
|
if (shouldIncludeModule("deviceTrigger")) {
|
|
49
|
-
api("com.moengage:realtime-trigger
|
|
45
|
+
api("com.moengage:realtime-trigger")
|
|
50
46
|
}
|
|
51
47
|
|
|
52
48
|
if (shouldIncludeModule("includeAndroidXRequiredLibraries")) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-moengage",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.4.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": [
|