react-native-moengage-geofence 3.4.3 → 3.6.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,18 @@
|
|
|
1
|
+
# 29-01-2024
|
|
2
|
+
|
|
3
|
+
## 3.6.0
|
|
4
|
+
- iOS
|
|
5
|
+
- MoEngageGeofence SDK version updated to `~>5.14.0`.
|
|
6
|
+
|
|
7
|
+
# 29-11-2023
|
|
8
|
+
|
|
9
|
+
## 3.5.0
|
|
10
|
+
- Android
|
|
11
|
+
- Add support for AGP `8.0.2` and above
|
|
12
|
+
- Upgrade Kotlin Version to 1.7.10
|
|
13
|
+
- iOS
|
|
14
|
+
- MoEngageGeofence SDK version updated to `~>5.12.0`.
|
|
15
|
+
|
|
1
16
|
# 31-08-2023
|
|
2
17
|
|
|
3
18
|
## 3.4.3
|
|
@@ -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, "11.0"
|
|
16
|
-
s.dependency 'MoEngagePluginGeofence', '>=2.
|
|
16
|
+
s.dependency 'MoEngagePluginGeofence', '>=2.6.0', '< 2.7.0'
|
|
17
17
|
s.dependency 'React'
|
|
18
18
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
19
19
|
|
package/android/build.gradle
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
buildscript {
|
|
2
|
-
ext.kotlinVersion = '1.
|
|
2
|
+
ext.kotlinVersion = '1.7.10'
|
|
3
3
|
|
|
4
4
|
repositories {
|
|
5
5
|
google()
|
|
@@ -7,7 +7,7 @@ buildscript {
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
dependencies {
|
|
10
|
-
classpath 'com.android.tools.build:gradle:
|
|
10
|
+
classpath 'com.android.tools.build:gradle:8.0.2'
|
|
11
11
|
// noinspection DifferentKotlinGradleVersion
|
|
12
12
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
|
13
13
|
}
|
|
@@ -17,11 +17,11 @@ apply plugin: 'com.android.library'
|
|
|
17
17
|
apply plugin: 'kotlin-android'
|
|
18
18
|
|
|
19
19
|
android {
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
compileSdk 33
|
|
21
|
+
namespace "com.moengage.react.geofence"
|
|
22
22
|
defaultConfig {
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
minSdk 21
|
|
24
|
+
targetSdk 33
|
|
25
25
|
versionCode 1
|
|
26
26
|
versionName "1.0"
|
|
27
27
|
}
|
|
@@ -47,9 +47,9 @@ repositories {
|
|
|
47
47
|
|
|
48
48
|
dependencies {
|
|
49
49
|
// noinspection GradleDynamicVersion
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
compileOnly("com.moengage:moe-android-sdk:12.
|
|
53
|
-
compileOnly("com.moengage:geofence:3.
|
|
54
|
-
implementation("com.moengage:plugin-base-geofence:1.
|
|
50
|
+
compileOnly 'com.facebook.react:react-native:+'
|
|
51
|
+
compileOnly "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
|
52
|
+
compileOnly("com.moengage:moe-android-sdk:12.10.00")
|
|
53
|
+
compileOnly("com.moengage:geofence:3.4.0")
|
|
54
|
+
implementation("com.moengage:plugin-base-geofence:1.2.0")
|
|
55
55
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
distributionBase=GRADLE_USER_HOME
|
|
2
2
|
distributionPath=wrapper/dists
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-
|
|
3
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-all.zip
|
|
4
4
|
zipStoreBase=GRADLE_USER_HOME
|
|
5
5
|
zipStorePath=wrapper/dists
|