@woosmap/react-native-plugin-geofencing 0.4.4 → 0.4.5-beta.2
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/android/build.gradle +80 -53
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +0 -1
- package/android/src/main/AndroidManifestNew.xml +2 -0
- package/android/src/main/java/com/reactnativeplugingeofencing/AirshipPushHelper.java +0 -1
- package/android/src/main/java/com/reactnativeplugingeofencing/PluginGeofencingModule.java +23 -25
- package/android/src/main/java/com/reactnativeplugingeofencing/PluginGeofencingPackage.java +12 -12
- package/android/src/main/java/com/reactnativeplugingeofencing/WoosmapMessageAndKey.java +0 -10
- package/android/src/main/java/com/reactnativeplugingeofencing/WoosmapTask.java +2 -2
- package/ios/PluginGeofencing-Bridging-Header.h +0 -1
- package/ios/{PluginGeofencing.m → PluginGeofencing.mm} +6 -1
- package/ios/PluginGeofencing.swift +2 -2
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/internal/Airship.js +0 -5
- package/lib/commonjs/internal/Airship.js.map +1 -1
- package/lib/commonjs/internal/IndoorBeacon.js +18 -21
- package/lib/commonjs/internal/IndoorBeacon.js.map +1 -1
- package/lib/commonjs/internal/Location.js +0 -8
- package/lib/commonjs/internal/Location.js.map +1 -1
- package/lib/commonjs/internal/MarketingCloud.js +0 -5
- package/lib/commonjs/internal/MarketingCloud.js.map +1 -1
- package/lib/commonjs/internal/Poi.js +0 -21
- package/lib/commonjs/internal/Poi.js.map +1 -1
- package/lib/commonjs/internal/Region.js +0 -12
- package/lib/commonjs/internal/Region.js.map +1 -1
- package/lib/commonjs/internal/Visit.js +0 -9
- package/lib/commonjs/internal/Visit.js.map +1 -1
- package/lib/commonjs/internal/Zoi.js +0 -20
- package/lib/commonjs/internal/Zoi.js.map +1 -1
- package/lib/commonjs/internal/nativeInterface.js.map +1 -1
- package/lib/commonjs/internal/types.js.map +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/internal/Airship.js +0 -5
- package/lib/module/internal/Airship.js.map +1 -1
- package/lib/module/internal/IndoorBeacon.js +18 -21
- package/lib/module/internal/IndoorBeacon.js.map +1 -1
- package/lib/module/internal/Location.js +0 -8
- package/lib/module/internal/Location.js.map +1 -1
- package/lib/module/internal/MarketingCloud.js +0 -5
- package/lib/module/internal/MarketingCloud.js.map +1 -1
- package/lib/module/internal/Poi.js +0 -21
- package/lib/module/internal/Poi.js.map +1 -1
- package/lib/module/internal/Region.js +0 -12
- package/lib/module/internal/Region.js.map +1 -1
- package/lib/module/internal/Visit.js +0 -9
- package/lib/module/internal/Visit.js.map +1 -1
- package/lib/module/internal/Zoi.js +0 -20
- package/lib/module/internal/Zoi.js.map +1 -1
- package/lib/module/internal/nativeInterface.js.map +1 -1
- package/lib/module/internal/types.js.map +1 -1
- package/lib/typescript/{index.d.ts → src/index.d.ts} +1 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/{internal → src/internal}/Airship.d.ts +1 -0
- package/lib/typescript/src/internal/Airship.d.ts.map +1 -0
- package/lib/typescript/{internal → src/internal}/IndoorBeacon.d.ts +1 -0
- package/lib/typescript/src/internal/IndoorBeacon.d.ts.map +1 -0
- package/lib/typescript/{internal → src/internal}/Location.d.ts +1 -0
- package/lib/typescript/src/internal/Location.d.ts.map +1 -0
- package/lib/typescript/{internal → src/internal}/MarketingCloud.d.ts +1 -0
- package/lib/typescript/src/internal/MarketingCloud.d.ts.map +1 -0
- package/lib/typescript/{internal → src/internal}/Poi.d.ts +1 -0
- package/lib/typescript/src/internal/Poi.d.ts.map +1 -0
- package/lib/typescript/{internal → src/internal}/Region.d.ts +1 -0
- package/lib/typescript/src/internal/Region.d.ts.map +1 -0
- package/lib/typescript/{internal → src/internal}/Visit.d.ts +1 -0
- package/lib/typescript/src/internal/Visit.d.ts.map +1 -0
- package/lib/typescript/{internal → src/internal}/Zoi.d.ts +1 -0
- package/lib/typescript/src/internal/Zoi.d.ts.map +1 -0
- package/lib/typescript/{internal → src/internal}/nativeInterface.d.ts +1 -0
- package/lib/typescript/src/internal/nativeInterface.d.ts.map +1 -0
- package/lib/typescript/{internal → src/internal}/types.d.ts +1 -0
- package/lib/typescript/src/internal/types.d.ts.map +1 -0
- package/package.json +57 -34
- package/react-native-plugin-geofencing.podspec +24 -2
- package/src/index.tsx +471 -0
- package/src/internal/Airship.tsx +24 -0
- package/src/internal/IndoorBeacon.tsx +95 -0
- package/src/internal/Location.tsx +46 -0
- package/src/internal/MarketingCloud.tsx +24 -0
- package/src/internal/Poi.tsx +111 -0
- package/src/internal/Region.tsx +66 -0
- package/src/internal/Visit.tsx +49 -0
- package/src/internal/Zoi.tsx +107 -0
- package/src/internal/nativeInterface.tsx +8 -0
- package/src/internal/types.tsx +20 -0
- package/ios/PluginGeofencing.xcodeproj/project.pbxproj +0 -293
- package/lib/typescript/__tests__/index.test.d.ts +0 -0
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A class that represents the POI object.
|
|
3
|
+
* @classdesc A class that represents the POI object.
|
|
4
|
+
* @constructs Poi
|
|
5
|
+
* @param {Object} jsonData A json object representing the POI.
|
|
6
|
+
* @param {string} city The name of the city the POI belongs to.
|
|
7
|
+
* @param {string} idstore A unique identifier for the POI.
|
|
8
|
+
* @param {name} name The name of the POI.
|
|
9
|
+
* @param {number} date The datetime stamp.
|
|
10
|
+
* @param {number} distance The distance between the POI and the user's location.
|
|
11
|
+
* @param {number} duration The duration to travel to the POI from the user's location.
|
|
12
|
+
* @param {number} latitude The latitude of the POI.
|
|
13
|
+
* @param {string} locationid Location id of the POI.
|
|
14
|
+
* @param {number} longitude The longitude of the POI.
|
|
15
|
+
* @param {string} zipcode The zip code of the POI.
|
|
16
|
+
* @param {number} radius The radius of the POI.
|
|
17
|
+
* @param {string} address The address of the POI.
|
|
18
|
+
* @param {string} countrycode The countrycode of the POI.
|
|
19
|
+
* @param {string} tags The tags for the POI.
|
|
20
|
+
* @param {string} types The types of the POI.
|
|
21
|
+
* @param {string} contact The contact for the POI.
|
|
22
|
+
*/
|
|
23
|
+
class Poi {
|
|
24
|
+
Jsondata: object;
|
|
25
|
+
City: string;
|
|
26
|
+
Idstore: string;
|
|
27
|
+
Name: string;
|
|
28
|
+
Date: number;
|
|
29
|
+
Distance: number;
|
|
30
|
+
Duration: number;
|
|
31
|
+
Latitude: number;
|
|
32
|
+
Locationid: string;
|
|
33
|
+
Longitude: number;
|
|
34
|
+
Zipcode: string;
|
|
35
|
+
Radius: number;
|
|
36
|
+
Countrycode: string;
|
|
37
|
+
Tags: string;
|
|
38
|
+
Types: string;
|
|
39
|
+
Contact: string;
|
|
40
|
+
Address: string;
|
|
41
|
+
userProperties: [string: any];
|
|
42
|
+
constructor(
|
|
43
|
+
jsondata: object,
|
|
44
|
+
city: string,
|
|
45
|
+
idstore: string,
|
|
46
|
+
name: string,
|
|
47
|
+
date: number,
|
|
48
|
+
distance: number,
|
|
49
|
+
duration: number,
|
|
50
|
+
latitude: number,
|
|
51
|
+
locationid: string,
|
|
52
|
+
longitude: number,
|
|
53
|
+
zipcode: string,
|
|
54
|
+
radius: number,
|
|
55
|
+
address: string,
|
|
56
|
+
countrycode: string,
|
|
57
|
+
tags: string,
|
|
58
|
+
types: string,
|
|
59
|
+
contact: string,
|
|
60
|
+
userProperties: [string: any]
|
|
61
|
+
) {
|
|
62
|
+
this.Jsondata = jsondata;
|
|
63
|
+
this.City = city;
|
|
64
|
+
this.Idstore = idstore;
|
|
65
|
+
this.Name = name;
|
|
66
|
+
this.Date = date;
|
|
67
|
+
this.Distance = distance;
|
|
68
|
+
this.Duration = duration;
|
|
69
|
+
this.Latitude = latitude;
|
|
70
|
+
this.Locationid = locationid;
|
|
71
|
+
this.Longitude = longitude;
|
|
72
|
+
this.Zipcode = zipcode;
|
|
73
|
+
this.Radius = radius;
|
|
74
|
+
this.Idstore = idstore;
|
|
75
|
+
this.Countrycode = countrycode;
|
|
76
|
+
this.Tags = tags;
|
|
77
|
+
this.Types = types;
|
|
78
|
+
this.Contact = contact;
|
|
79
|
+
this.Address = address;
|
|
80
|
+
this.userProperties = userProperties;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Converts json object to an object of type Poi.
|
|
84
|
+
* @param {Object} json The json representation of the Poi.
|
|
85
|
+
* @returns Object
|
|
86
|
+
* @memberof Poi
|
|
87
|
+
*/
|
|
88
|
+
static jsonToObj(json: any) {
|
|
89
|
+
return new Poi(
|
|
90
|
+
json.jsondata,
|
|
91
|
+
json.city,
|
|
92
|
+
json.idstore,
|
|
93
|
+
json.name,
|
|
94
|
+
json.date,
|
|
95
|
+
json.distance,
|
|
96
|
+
json.duration,
|
|
97
|
+
json.latitude,
|
|
98
|
+
json.locationid,
|
|
99
|
+
json.longitude,
|
|
100
|
+
json.zipcode,
|
|
101
|
+
json.radius,
|
|
102
|
+
json.address,
|
|
103
|
+
json.countrycode,
|
|
104
|
+
json.tags,
|
|
105
|
+
json.types,
|
|
106
|
+
json.contact,
|
|
107
|
+
json.userProperties
|
|
108
|
+
);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
export default Poi;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A class that represents the Region object.
|
|
3
|
+
* @classdesc A class that represents the Region object.
|
|
4
|
+
* @constructs Region
|
|
5
|
+
* @param {number} date The datetime stamp.
|
|
6
|
+
* @param {boolean} didEnter A boolean value indicating whether the region was entered.
|
|
7
|
+
* @param {string} identifier An alphanumeric unique identifier for the region.
|
|
8
|
+
* @param {number} latitude The latitude of the region.
|
|
9
|
+
* @param {number} longitude The longitude of the region.
|
|
10
|
+
* @param {number} radius The radius of the region in meters.
|
|
11
|
+
* @param {boolean} frompositiondetection Determines whether the user's current position is inside the region.
|
|
12
|
+
* @param {string} eventName Describe cause of region event, Entry or Exit.
|
|
13
|
+
* @param {number} spenttime Number of seconds the user spent in region in case of event name Exit.
|
|
14
|
+
*/
|
|
15
|
+
class Region {
|
|
16
|
+
Date: number;
|
|
17
|
+
Didenter: boolean;
|
|
18
|
+
Identifier: string;
|
|
19
|
+
Latitude: number;
|
|
20
|
+
Longitude: number;
|
|
21
|
+
Radius: number;
|
|
22
|
+
Frompositiondetection: boolean;
|
|
23
|
+
Eventname: string;
|
|
24
|
+
SpentTime: number;
|
|
25
|
+
constructor(
|
|
26
|
+
date: number,
|
|
27
|
+
didenter: boolean,
|
|
28
|
+
identifier: string,
|
|
29
|
+
latitude: number,
|
|
30
|
+
longitude: number,
|
|
31
|
+
radius: number,
|
|
32
|
+
frompositiondetection: boolean,
|
|
33
|
+
eventname: string,
|
|
34
|
+
spenttime: number
|
|
35
|
+
) {
|
|
36
|
+
this.Date = date;
|
|
37
|
+
this.Didenter = didenter;
|
|
38
|
+
this.Identifier = identifier;
|
|
39
|
+
this.Latitude = latitude;
|
|
40
|
+
this.Longitude = longitude;
|
|
41
|
+
this.Radius = radius;
|
|
42
|
+
this.Frompositiondetection = frompositiondetection;
|
|
43
|
+
this.Eventname = eventname;
|
|
44
|
+
this.SpentTime = spenttime;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Converts json object to an object of type Region.
|
|
48
|
+
* @param {Object} json The json representation of the region.
|
|
49
|
+
* @returns Object
|
|
50
|
+
* @memberof Region
|
|
51
|
+
*/
|
|
52
|
+
static jsonToObj(json: any) {
|
|
53
|
+
return new Region(
|
|
54
|
+
json.date,
|
|
55
|
+
json.didenter,
|
|
56
|
+
json.identifier,
|
|
57
|
+
json.latitude,
|
|
58
|
+
json.longitude,
|
|
59
|
+
json.radius,
|
|
60
|
+
json.frompositiondetection,
|
|
61
|
+
json.eventname,
|
|
62
|
+
json.spenttime
|
|
63
|
+
);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
export default Region;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @classdesc A class that represents the visits object.
|
|
3
|
+
* @constructs Visit
|
|
4
|
+
* @param {number} accuracy The accuracy in meters.
|
|
5
|
+
* @param {number} arrivalDate The datetime stamp for the arrival at the place of visit.
|
|
6
|
+
* @param {number} date Current datetime stamp.
|
|
7
|
+
* @param {number} latitude The latitude of the place of visit.
|
|
8
|
+
* @param {number} longitude The longitude of the plaee of visit.
|
|
9
|
+
*/
|
|
10
|
+
class Visit {
|
|
11
|
+
Accuracy: number;
|
|
12
|
+
Arrivaldate: number;
|
|
13
|
+
Date: number;
|
|
14
|
+
Departuredate: number;
|
|
15
|
+
Latitude: number;
|
|
16
|
+
Longitude: number;
|
|
17
|
+
constructor(
|
|
18
|
+
accuracy: number,
|
|
19
|
+
arrivaldate: number,
|
|
20
|
+
date: number,
|
|
21
|
+
departuredate: number,
|
|
22
|
+
latitude: number,
|
|
23
|
+
longitude: number
|
|
24
|
+
) {
|
|
25
|
+
this.Accuracy = accuracy;
|
|
26
|
+
this.Arrivaldate = arrivaldate;
|
|
27
|
+
this.Date = date;
|
|
28
|
+
this.Departuredate = departuredate;
|
|
29
|
+
this.Latitude = latitude;
|
|
30
|
+
this.Longitude = longitude;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Converts json object to an object of type Visits.
|
|
34
|
+
* @param {Object} json The json representation of the Visits.
|
|
35
|
+
* @returns Visit
|
|
36
|
+
* @memberof Visit
|
|
37
|
+
*/
|
|
38
|
+
static jsonToObj(json: any): Visit {
|
|
39
|
+
return new Visit(
|
|
40
|
+
json.accuracy,
|
|
41
|
+
json.arrivaldate,
|
|
42
|
+
json.date,
|
|
43
|
+
json.departuredate,
|
|
44
|
+
json.latitude,
|
|
45
|
+
json.longitude
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
module.exports = Visit;
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @classdesc A class that represents the Zones of Interest (ZOI) object.
|
|
3
|
+
* @constructs Zoi
|
|
4
|
+
* @param {number} accumulator Represents the number of visits used to build the ZOI (only for calculation of ZOI)
|
|
5
|
+
* @param {number} age Age is used to determine if a ZOI should be deleted by the algorithm (only for calculation of ZOI)
|
|
6
|
+
* @param {number} covariance_det The covariance determinant (only for calculation of ZOI)
|
|
7
|
+
* @param {number} duration The duration of all the accumulated visits of the ZOI
|
|
8
|
+
* @param {number} endtime The exit date of the last ZOI visit
|
|
9
|
+
* @param {string[]} idvisits The list of id visits included in this ZOI
|
|
10
|
+
* @param {number} latmean The latitude of the center of the ZOI
|
|
11
|
+
* @param {number} lngmean The longitude of the center of the ZOI
|
|
12
|
+
* @param {string} period The classification of the period (HOME, WORK, OTHER or NO QUALIFIER)
|
|
13
|
+
* @param {number} prior_probability Estimation of probability (only for calculation of ZOI)
|
|
14
|
+
* @param {number} starttime The entry date for the first ZOI visit
|
|
15
|
+
* @param {number} weekly_density The weekly density of the ZOI visit (only for classification of ZOI)
|
|
16
|
+
* @param {string} wktpolygon This is the Well-known text representation of geometry of the ZOI polygon.
|
|
17
|
+
* @param {number} x00covariance_matrix_inverse The covariance of a cluster (only for calculation of ZOI)
|
|
18
|
+
* @param {number} x01covariance_matrix_inverse The covariance of a cluster (only for calculation of ZOI)
|
|
19
|
+
* @param {number} x10covariance_matrix_inverse The covariance of a cluster (only for calculation of ZOI)
|
|
20
|
+
* @param {number} x11covariance_matrix_inverse The covariance of a cluster (only for calculation of ZOI)
|
|
21
|
+
|
|
22
|
+
*/
|
|
23
|
+
class Zoi {
|
|
24
|
+
Accumulator: number;
|
|
25
|
+
Age: number;
|
|
26
|
+
Covariance_Det: number;
|
|
27
|
+
Duration: number;
|
|
28
|
+
Endtime: number;
|
|
29
|
+
Idvisits: string[];
|
|
30
|
+
Latmean: number;
|
|
31
|
+
Lngmean: number;
|
|
32
|
+
Period: string;
|
|
33
|
+
Prior_Probability: number;
|
|
34
|
+
Starttime: number;
|
|
35
|
+
Weekly_Density: number;
|
|
36
|
+
X00Covariance_Matrix_Inverse: number;
|
|
37
|
+
X01Covariance_Matrix_Inverse: number;
|
|
38
|
+
X10Covariance_Matrix_Inverse: number;
|
|
39
|
+
X11Covariance_Matrix_Inverse: number;
|
|
40
|
+
Wktpolygon: string;
|
|
41
|
+
constructor(
|
|
42
|
+
accumulator: number,
|
|
43
|
+
age: number,
|
|
44
|
+
covariance_det: number,
|
|
45
|
+
duration: number,
|
|
46
|
+
endtime: number,
|
|
47
|
+
idvisits: string[],
|
|
48
|
+
latmean: number,
|
|
49
|
+
lngmean: number,
|
|
50
|
+
period: string,
|
|
51
|
+
prior_probability: number,
|
|
52
|
+
starttime: number,
|
|
53
|
+
weekly_density: number,
|
|
54
|
+
wktpolygon: string,
|
|
55
|
+
x00covariance_matrix_inverse: number,
|
|
56
|
+
x01covariance_matrix_inverse: number,
|
|
57
|
+
x10covariance_matrix_inverse: number,
|
|
58
|
+
x11covariance_matrix_inverse: number
|
|
59
|
+
) {
|
|
60
|
+
this.Accumulator = accumulator;
|
|
61
|
+
this.Age = age;
|
|
62
|
+
this.Covariance_Det = covariance_det;
|
|
63
|
+
this.Duration = duration;
|
|
64
|
+
this.Endtime = endtime;
|
|
65
|
+
this.Idvisits = idvisits;
|
|
66
|
+
this.Latmean = latmean;
|
|
67
|
+
this.Lngmean = lngmean;
|
|
68
|
+
this.Period = period;
|
|
69
|
+
this.Prior_Probability = prior_probability;
|
|
70
|
+
this.Starttime = starttime;
|
|
71
|
+
this.Weekly_Density = weekly_density;
|
|
72
|
+
this.Covariance_Det = covariance_det;
|
|
73
|
+
this.Wktpolygon = wktpolygon;
|
|
74
|
+
this.X00Covariance_Matrix_Inverse = x00covariance_matrix_inverse;
|
|
75
|
+
this.X01Covariance_Matrix_Inverse = x01covariance_matrix_inverse;
|
|
76
|
+
this.X10Covariance_Matrix_Inverse = x10covariance_matrix_inverse;
|
|
77
|
+
this.X11Covariance_Matrix_Inverse = x11covariance_matrix_inverse;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Converts json object to an object of type Zoi.
|
|
81
|
+
* @param {Object} json The json representation of the Zoi.
|
|
82
|
+
* @returns Object
|
|
83
|
+
* @memberof Zoi
|
|
84
|
+
*/
|
|
85
|
+
static jsonToObj(json: any) {
|
|
86
|
+
return new Zoi(
|
|
87
|
+
json.accumulator,
|
|
88
|
+
json.age,
|
|
89
|
+
json.covariance_det,
|
|
90
|
+
json.duration,
|
|
91
|
+
json.endtime,
|
|
92
|
+
json.idvisits,
|
|
93
|
+
json.latmean,
|
|
94
|
+
json.lngmean,
|
|
95
|
+
json.period,
|
|
96
|
+
json.prior_probability,
|
|
97
|
+
json.starttime,
|
|
98
|
+
json.weekly_density,
|
|
99
|
+
json.wktpolygon,
|
|
100
|
+
json.x00covariance_matrix_inverse,
|
|
101
|
+
json.x01covariance_matrix_inverse,
|
|
102
|
+
json.x10covariance_matrix_inverse,
|
|
103
|
+
json.x11covariance_matrix_inverse
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
module.exports = Zoi;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Geofence region types
|
|
3
|
+
*/
|
|
4
|
+
export type RegionType = 'circle' | 'isochrone';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Location of custom profile to fetch
|
|
8
|
+
*/
|
|
9
|
+
export type ProfileSource = 'local' | 'external';
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* GeofenceRegion structure
|
|
13
|
+
*/
|
|
14
|
+
export interface GeofenceRegion {
|
|
15
|
+
regionId: string;
|
|
16
|
+
lat: number;
|
|
17
|
+
lng: number;
|
|
18
|
+
radius: number;
|
|
19
|
+
type: RegionType;
|
|
20
|
+
}
|
|
@@ -1,293 +0,0 @@
|
|
|
1
|
-
// !$*UTF8*$!
|
|
2
|
-
{
|
|
3
|
-
archiveVersion = 1;
|
|
4
|
-
classes = {
|
|
5
|
-
};
|
|
6
|
-
objectVersion = 46;
|
|
7
|
-
objects = {
|
|
8
|
-
|
|
9
|
-
/* Begin PBXBuildFile section */
|
|
10
|
-
|
|
11
|
-
5E555C0D2413F4C50049A1A2 /* PluginGeofencing.m in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* PluginGeofencing.m */; };
|
|
12
|
-
F4FF95D7245B92E800C19C63 /* PluginGeofencing.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4FF95D6245B92E800C19C63 /* PluginGeofencing.swift */; };
|
|
13
|
-
|
|
14
|
-
/* End PBXBuildFile section */
|
|
15
|
-
|
|
16
|
-
/* Begin PBXCopyFilesBuildPhase section */
|
|
17
|
-
58B511D91A9E6C8500147676 /* CopyFiles */ = {
|
|
18
|
-
isa = PBXCopyFilesBuildPhase;
|
|
19
|
-
buildActionMask = 2147483647;
|
|
20
|
-
dstPath = "include/$(PRODUCT_NAME)";
|
|
21
|
-
dstSubfolderSpec = 16;
|
|
22
|
-
files = (
|
|
23
|
-
);
|
|
24
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
25
|
-
};
|
|
26
|
-
/* End PBXCopyFilesBuildPhase section */
|
|
27
|
-
|
|
28
|
-
/* Begin PBXFileReference section */
|
|
29
|
-
134814201AA4EA6300B7C361 /* libPluginGeofencing.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPluginGeofencing.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
30
|
-
|
|
31
|
-
B3E7B5891CC2AC0600A0062D /* PluginGeofencing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PluginGeofencing.m; sourceTree = "<group>"; };
|
|
32
|
-
F4FF95D5245B92E700C19C63 /* PluginGeofencing-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "PluginGeofencing-Bridging-Header.h"; sourceTree = "<group>"; };
|
|
33
|
-
F4FF95D6245B92E800C19C63 /* PluginGeofencing.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginGeofencing.swift; sourceTree = "<group>"; };
|
|
34
|
-
|
|
35
|
-
/* End PBXFileReference section */
|
|
36
|
-
|
|
37
|
-
/* Begin PBXFrameworksBuildPhase section */
|
|
38
|
-
58B511D81A9E6C8500147676 /* Frameworks */ = {
|
|
39
|
-
isa = PBXFrameworksBuildPhase;
|
|
40
|
-
buildActionMask = 2147483647;
|
|
41
|
-
files = (
|
|
42
|
-
);
|
|
43
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
44
|
-
};
|
|
45
|
-
/* End PBXFrameworksBuildPhase section */
|
|
46
|
-
|
|
47
|
-
/* Begin PBXGroup section */
|
|
48
|
-
134814211AA4EA7D00B7C361 /* Products */ = {
|
|
49
|
-
isa = PBXGroup;
|
|
50
|
-
children = (
|
|
51
|
-
134814201AA4EA6300B7C361 /* libPluginGeofencing.a */,
|
|
52
|
-
);
|
|
53
|
-
name = Products;
|
|
54
|
-
sourceTree = "<group>";
|
|
55
|
-
};
|
|
56
|
-
58B511D21A9E6C8500147676 = {
|
|
57
|
-
isa = PBXGroup;
|
|
58
|
-
children = (
|
|
59
|
-
|
|
60
|
-
F4FF95D6245B92E800C19C63 /* PluginGeofencing.swift */,
|
|
61
|
-
B3E7B5891CC2AC0600A0062D /* PluginGeofencing.m */,
|
|
62
|
-
F4FF95D5245B92E700C19C63 /* PluginGeofencing-Bridging-Header.h */,
|
|
63
|
-
|
|
64
|
-
134814211AA4EA7D00B7C361 /* Products */,
|
|
65
|
-
);
|
|
66
|
-
sourceTree = "<group>";
|
|
67
|
-
};
|
|
68
|
-
/* End PBXGroup section */
|
|
69
|
-
|
|
70
|
-
/* Begin PBXNativeTarget section */
|
|
71
|
-
58B511DA1A9E6C8500147676 /* PluginGeofencing */ = {
|
|
72
|
-
isa = PBXNativeTarget;
|
|
73
|
-
buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "PluginGeofencing" */;
|
|
74
|
-
buildPhases = (
|
|
75
|
-
58B511D71A9E6C8500147676 /* Sources */,
|
|
76
|
-
58B511D81A9E6C8500147676 /* Frameworks */,
|
|
77
|
-
58B511D91A9E6C8500147676 /* CopyFiles */,
|
|
78
|
-
);
|
|
79
|
-
buildRules = (
|
|
80
|
-
);
|
|
81
|
-
dependencies = (
|
|
82
|
-
);
|
|
83
|
-
name = PluginGeofencing;
|
|
84
|
-
productName = RCTDataManager;
|
|
85
|
-
productReference = 134814201AA4EA6300B7C361 /* libPluginGeofencing.a */;
|
|
86
|
-
productType = "com.apple.product-type.library.static";
|
|
87
|
-
};
|
|
88
|
-
/* End PBXNativeTarget section */
|
|
89
|
-
|
|
90
|
-
/* Begin PBXProject section */
|
|
91
|
-
58B511D31A9E6C8500147676 /* Project object */ = {
|
|
92
|
-
isa = PBXProject;
|
|
93
|
-
attributes = {
|
|
94
|
-
LastUpgradeCheck = 0920;
|
|
95
|
-
ORGANIZATIONNAME = Facebook;
|
|
96
|
-
TargetAttributes = {
|
|
97
|
-
58B511DA1A9E6C8500147676 = {
|
|
98
|
-
CreatedOnToolsVersion = 6.1.1;
|
|
99
|
-
};
|
|
100
|
-
};
|
|
101
|
-
};
|
|
102
|
-
buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "PluginGeofencing" */;
|
|
103
|
-
compatibilityVersion = "Xcode 3.2";
|
|
104
|
-
developmentRegion = English;
|
|
105
|
-
hasScannedForEncodings = 0;
|
|
106
|
-
knownRegions = (
|
|
107
|
-
English,
|
|
108
|
-
en,
|
|
109
|
-
);
|
|
110
|
-
mainGroup = 58B511D21A9E6C8500147676;
|
|
111
|
-
productRefGroup = 58B511D21A9E6C8500147676;
|
|
112
|
-
projectDirPath = "";
|
|
113
|
-
projectRoot = "";
|
|
114
|
-
targets = (
|
|
115
|
-
58B511DA1A9E6C8500147676 /* PluginGeofencing */,
|
|
116
|
-
);
|
|
117
|
-
};
|
|
118
|
-
/* End PBXProject section */
|
|
119
|
-
|
|
120
|
-
/* Begin PBXSourcesBuildPhase section */
|
|
121
|
-
58B511D71A9E6C8500147676 /* Sources */ = {
|
|
122
|
-
isa = PBXSourcesBuildPhase;
|
|
123
|
-
buildActionMask = 2147483647;
|
|
124
|
-
files = (
|
|
125
|
-
|
|
126
|
-
F4FF95D7245B92E800C19C63 /* PluginGeofencing.swift in Sources */,
|
|
127
|
-
B3E7B58A1CC2AC0600A0062D /* PluginGeofencing.m in Sources */,
|
|
128
|
-
|
|
129
|
-
);
|
|
130
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
131
|
-
};
|
|
132
|
-
/* End PBXSourcesBuildPhase section */
|
|
133
|
-
|
|
134
|
-
/* Begin XCBuildConfiguration section */
|
|
135
|
-
58B511ED1A9E6C8500147676 /* Debug */ = {
|
|
136
|
-
isa = XCBuildConfiguration;
|
|
137
|
-
buildSettings = {
|
|
138
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
139
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
140
|
-
CLANG_CXX_LIBRARY = "libc++";
|
|
141
|
-
CLANG_ENABLE_MODULES = YES;
|
|
142
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
|
143
|
-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
144
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
145
|
-
CLANG_WARN_COMMA = YES;
|
|
146
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
147
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
148
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
|
149
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
150
|
-
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
151
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
|
152
|
-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
153
|
-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
154
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
155
|
-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
156
|
-
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
157
|
-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
158
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
159
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
160
|
-
COPY_PHASE_STRIP = NO;
|
|
161
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
162
|
-
ENABLE_TESTABILITY = YES;
|
|
163
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
164
|
-
GCC_DYNAMIC_NO_PIC = NO;
|
|
165
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
|
166
|
-
GCC_OPTIMIZATION_LEVEL = 0;
|
|
167
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
168
|
-
"DEBUG=1",
|
|
169
|
-
"$(inherited)",
|
|
170
|
-
);
|
|
171
|
-
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
172
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
173
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
174
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
175
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
176
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
177
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
178
|
-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
|
179
|
-
MTL_ENABLE_DEBUG_INFO = YES;
|
|
180
|
-
ONLY_ACTIVE_ARCH = YES;
|
|
181
|
-
SDKROOT = iphoneos;
|
|
182
|
-
};
|
|
183
|
-
name = Debug;
|
|
184
|
-
};
|
|
185
|
-
58B511EE1A9E6C8500147676 /* Release */ = {
|
|
186
|
-
isa = XCBuildConfiguration;
|
|
187
|
-
buildSettings = {
|
|
188
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
189
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
190
|
-
CLANG_CXX_LIBRARY = "libc++";
|
|
191
|
-
CLANG_ENABLE_MODULES = YES;
|
|
192
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
|
193
|
-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
194
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
195
|
-
CLANG_WARN_COMMA = YES;
|
|
196
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
197
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
198
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
|
199
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
200
|
-
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
201
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
|
202
|
-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
203
|
-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
204
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
205
|
-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
206
|
-
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
207
|
-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
208
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
209
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
210
|
-
COPY_PHASE_STRIP = YES;
|
|
211
|
-
ENABLE_NS_ASSERTIONS = NO;
|
|
212
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
213
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
214
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
|
215
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
216
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
217
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
218
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
219
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
220
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
221
|
-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
|
222
|
-
MTL_ENABLE_DEBUG_INFO = NO;
|
|
223
|
-
SDKROOT = iphoneos;
|
|
224
|
-
VALIDATE_PRODUCT = YES;
|
|
225
|
-
};
|
|
226
|
-
name = Release;
|
|
227
|
-
};
|
|
228
|
-
58B511F01A9E6C8500147676 /* Debug */ = {
|
|
229
|
-
isa = XCBuildConfiguration;
|
|
230
|
-
buildSettings = {
|
|
231
|
-
HEADER_SEARCH_PATHS = (
|
|
232
|
-
"$(inherited)",
|
|
233
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
|
234
|
-
"$(SRCROOT)/../../../React/**",
|
|
235
|
-
"$(SRCROOT)/../../react-native/React/**",
|
|
236
|
-
);
|
|
237
|
-
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
|
238
|
-
OTHER_LDFLAGS = "-ObjC";
|
|
239
|
-
PRODUCT_NAME = PluginGeofencing;
|
|
240
|
-
SKIP_INSTALL = YES;
|
|
241
|
-
|
|
242
|
-
SWIFT_OBJC_BRIDGING_HEADER = "PluginGeofencing-Bridging-Header.h";
|
|
243
|
-
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
244
|
-
SWIFT_VERSION = 5.0;
|
|
245
|
-
|
|
246
|
-
};
|
|
247
|
-
name = Debug;
|
|
248
|
-
};
|
|
249
|
-
58B511F11A9E6C8500147676 /* Release */ = {
|
|
250
|
-
isa = XCBuildConfiguration;
|
|
251
|
-
buildSettings = {
|
|
252
|
-
HEADER_SEARCH_PATHS = (
|
|
253
|
-
"$(inherited)",
|
|
254
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
|
255
|
-
"$(SRCROOT)/../../../React/**",
|
|
256
|
-
"$(SRCROOT)/../../react-native/React/**",
|
|
257
|
-
);
|
|
258
|
-
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
|
259
|
-
OTHER_LDFLAGS = "-ObjC";
|
|
260
|
-
PRODUCT_NAME = PluginGeofencing;
|
|
261
|
-
SKIP_INSTALL = YES;
|
|
262
|
-
|
|
263
|
-
SWIFT_OBJC_BRIDGING_HEADER = "PluginGeofencing-Bridging-Header.h";
|
|
264
|
-
SWIFT_VERSION = 5.0;
|
|
265
|
-
|
|
266
|
-
};
|
|
267
|
-
name = Release;
|
|
268
|
-
};
|
|
269
|
-
/* End XCBuildConfiguration section */
|
|
270
|
-
|
|
271
|
-
/* Begin XCConfigurationList section */
|
|
272
|
-
58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "PluginGeofencing" */ = {
|
|
273
|
-
isa = XCConfigurationList;
|
|
274
|
-
buildConfigurations = (
|
|
275
|
-
58B511ED1A9E6C8500147676 /* Debug */,
|
|
276
|
-
58B511EE1A9E6C8500147676 /* Release */,
|
|
277
|
-
);
|
|
278
|
-
defaultConfigurationIsVisible = 0;
|
|
279
|
-
defaultConfigurationName = Release;
|
|
280
|
-
};
|
|
281
|
-
58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "PluginGeofencing" */ = {
|
|
282
|
-
isa = XCConfigurationList;
|
|
283
|
-
buildConfigurations = (
|
|
284
|
-
58B511F01A9E6C8500147676 /* Debug */,
|
|
285
|
-
58B511F11A9E6C8500147676 /* Release */,
|
|
286
|
-
);
|
|
287
|
-
defaultConfigurationIsVisible = 0;
|
|
288
|
-
defaultConfigurationName = Release;
|
|
289
|
-
};
|
|
290
|
-
/* End XCConfigurationList section */
|
|
291
|
-
};
|
|
292
|
-
rootObject = 58B511D31A9E6C8500147676 /* Project object */;
|
|
293
|
-
}
|
|
File without changes
|