react-native-moengage-geofence 7.0.3 → 7.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 +19 -1
- package/ReactNativeMoEngageGeofence.podspec +1 -1
- package/android/build.gradle +9 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
# 19-11-2025
|
|
2
|
+
|
|
3
|
+
## 7.1.0
|
|
4
|
+
|
|
5
|
+
- Android
|
|
6
|
+
- Moving the internal native dependencies to bill-of-materials (BOM) for better version management.
|
|
7
|
+
- iOS
|
|
8
|
+
- `MoEngage-iOS-SDK` version updated to `10.08.0`
|
|
9
|
+
|
|
10
|
+
# 17-10-2025
|
|
11
|
+
|
|
12
|
+
## 7.0.4
|
|
13
|
+
|
|
14
|
+
- Android
|
|
15
|
+
- `geofence` version updated to `5.0.3`
|
|
16
|
+
- iOS
|
|
17
|
+
- `MoEngageGeofence` version updated to `6.00.3`
|
|
18
|
+
|
|
1
19
|
# 11-09-2025
|
|
2
20
|
|
|
3
21
|
## 7.0.3
|
|
@@ -5,7 +23,7 @@
|
|
|
5
23
|
- iOS
|
|
6
24
|
-MoEngageGeofence version updated to `6.00.2`
|
|
7
25
|
- Android
|
|
8
|
-
|
|
26
|
+
- `geofence` version updated to `5.0.1`
|
|
9
27
|
|
|
10
28
|
# 29-07-2025
|
|
11
29
|
|
|
@@ -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.7.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
|
@@ -14,10 +14,8 @@ buildscript {
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
ext {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
moengageGeofenceVersion = "5.0.1"
|
|
20
|
-
pluginBaseGeofenceVersion = "3.0.1"
|
|
17
|
+
moengageNativeBOMVersion = "1.1.1"
|
|
18
|
+
moengagePluginBaseBOMVersion = "1.1.0"
|
|
21
19
|
}
|
|
22
20
|
|
|
23
21
|
apply plugin: 'com.android.library'
|
|
@@ -77,9 +75,13 @@ dependencies {
|
|
|
77
75
|
// noinspection GradleDynamicVersion
|
|
78
76
|
compileOnly('com.facebook.react:react-native')
|
|
79
77
|
compileOnly "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
78
|
+
|
|
79
|
+
implementation(platform("com.moengage:android-bom:$moengageNativeBOMVersion"))
|
|
80
|
+
compileOnly("com.moengage:moe-android-sdk")
|
|
81
|
+
api("com.moengage:geofence")
|
|
82
|
+
|
|
83
|
+
implementation(platform("com.moengage:plugin-base-bom:$moengagePluginBaseBOMVersion"))
|
|
84
|
+
implementation("com.moengage:plugin-base-geofence")
|
|
83
85
|
}
|
|
84
86
|
|
|
85
87
|
def isNewArchitectureEnabled() {
|