react-native-moengage-geofence 2.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 +20 -0
- package/ReactNativeMoEngageGeofence.podspec +17 -0
- package/index.ts +1 -0
- package/package.json +19 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# react-native-moengage-geofence
|
|
2
|
+
---
|
|
3
|
+
|
|
4
|
+
## Change Log:
|
|
5
|
+
|
|
6
|
+
### 2.1.0
|
|
7
|
+
Release Date: 16th September 2021
|
|
8
|
+
- iOS
|
|
9
|
+
- MOGeofence SDK version updated to `~>3.1.0`.
|
|
10
|
+
- Base plugin version dependency updated to `~>2.1.0`.
|
|
11
|
+
|
|
12
|
+
### 2.0.0
|
|
13
|
+
Release Date: 25th February 2021
|
|
14
|
+
- Native Dependencies updated to support MOGeofence `3.*` and above
|
|
15
|
+
- Deployment target set to iOS 10.0
|
|
16
|
+
|
|
17
|
+
### 1.0.0
|
|
18
|
+
Release Date: 7th August 2020
|
|
19
|
+
- Native Dependencies updated to support MOGeofence `2.*` and above
|
|
20
|
+
- Deployment target set to iOS 9.0
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
require 'json'
|
|
2
|
+
package = JSON.parse(File.read('package.json'))
|
|
3
|
+
|
|
4
|
+
Pod::Spec.new do |s|
|
|
5
|
+
s.name = "ReactNativeMoEngageGeofence"
|
|
6
|
+
s.version = package["version"]
|
|
7
|
+
s.description = package["description"]
|
|
8
|
+
s.summary = <<-DESC
|
|
9
|
+
A React Native plugin for supporting Geofence based push campaigns in an app.
|
|
10
|
+
DESC
|
|
11
|
+
s.homepage = "https://www.moengage.com"
|
|
12
|
+
s.license = package['license']
|
|
13
|
+
s.authors = "MoEngage Inc."
|
|
14
|
+
s.source = {:file => './' }
|
|
15
|
+
s.platform = :ios, "10.0"
|
|
16
|
+
s.dependency 'MOGeofence', '>=3.1.0', '< 3.2.0'
|
|
17
|
+
end
|
package/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// MoEngage Geofence support for iOS platform
|
package/package.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "react-native-moengage-geofence",
|
|
3
|
+
"version": "2.1.0",
|
|
4
|
+
"description": "MoEngage React Native package to support geofence based campaigns in iOS platform",
|
|
5
|
+
"main": "index.ts",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"moengage",
|
|
8
|
+
"push-notification",
|
|
9
|
+
"react-native",
|
|
10
|
+
"ios",
|
|
11
|
+
"geofence"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
15
|
+
},
|
|
16
|
+
"author": "MoEngage",
|
|
17
|
+
"contributors": ["MoEngage <mobiledevs@moengage.com>"],
|
|
18
|
+
"license": "ISC"
|
|
19
|
+
}
|