react-native-moengage-geofence 7.3.0 → 7.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 +12 -3
- package/ReactNativeMoEngageGeofence.podspec +1 -1
- package/android/build.gradle +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
# 07-05-2026
|
|
2
|
+
|
|
3
|
+
## 7.4.0
|
|
4
|
+
|
|
5
|
+
- Android
|
|
6
|
+
- updating `android-bom` to `2.2.2`
|
|
7
|
+
- iOS
|
|
8
|
+
- Updated `MoEngage-iOS-SDK` to `10.12.0`
|
|
9
|
+
|
|
1
10
|
# 15-04-2026
|
|
2
11
|
|
|
3
12
|
## 7.3.0
|
|
@@ -7,8 +16,8 @@
|
|
|
7
16
|
- AGP version updated from `8.7.3` to `8.13.2`
|
|
8
17
|
- Migrating the common gradle configuration to the gradle config
|
|
9
18
|
- iOS
|
|
10
|
-
|
|
11
|
-
|
|
19
|
+
- Updated MoEngageGeofence to `6.00.7`
|
|
20
|
+
|
|
12
21
|
# 09-02-2026
|
|
13
22
|
|
|
14
23
|
## 7.2.0
|
|
@@ -27,7 +36,7 @@
|
|
|
27
36
|
- Moving the internal native dependencies to bill-of-materials (BOM) for better version management.
|
|
28
37
|
- iOS
|
|
29
38
|
- `MoEngage-iOS-SDK` version updated to `10.08.0`
|
|
30
|
-
|
|
39
|
+
|
|
31
40
|
# 17-10-2025
|
|
32
41
|
|
|
33
42
|
## 7.0.4
|
|
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
|
|
|
13
13
|
s.authors = "MoEngage Inc."
|
|
14
14
|
s.source = {:file => './' }
|
|
15
15
|
s.platform = :ios, "13.0"
|
|
16
|
-
s.dependency 'MoEngagePluginGeofence', '4.
|
|
16
|
+
s.dependency 'MoEngagePluginGeofence', '4.9.0'
|
|
17
17
|
s.dependency 'React'
|
|
18
18
|
s.dependency 'ReactNativeMoEngage'
|
|
19
19
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
package/android/build.gradle
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import com.moengage.gradle.android.library.plugin.configs.BuildConfigType
|
|
2
2
|
|
|
3
3
|
ext {
|
|
4
|
-
moengageNativeBOMVersion = "2.
|
|
5
|
-
moengagePluginBaseBOMVersion = "
|
|
4
|
+
moengageNativeBOMVersion = "2.2.2"
|
|
5
|
+
moengagePluginBaseBOMVersion = "3.0.1"
|
|
6
6
|
kotlinVersion = "1.9.23"
|
|
7
7
|
}
|
|
8
8
|
|
|
@@ -55,7 +55,7 @@ dependencies {
|
|
|
55
55
|
compileOnly('com.facebook.react:react-native')
|
|
56
56
|
compileOnly "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
|
57
57
|
|
|
58
|
-
implementation(platform("com.moengage:android-bom:$moengageNativeBOMVersion"))
|
|
58
|
+
implementation(platform("com.moengage:android-bom:$moengageNativeBOMVersion"))
|
|
59
59
|
compileOnly("com.moengage:moe-android-sdk")
|
|
60
60
|
api("com.moengage:geofence")
|
|
61
61
|
|