@situm/cordova 3.4.2 → 3.4.3
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/README.md +15 -5
- package/example/azure-pipelines.yml +16 -0
- package/package.json +2 -2
- package/plugin.xml +1 -1
- package/src/android/app/build.gradle +1 -1
- package/src/android/situm.gradle +1 -1
package/README.md
CHANGED
|
@@ -2,12 +2,22 @@
|
|
|
2
2
|
<h1 align="center">Situm Cordova Plugin</h1>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
|
-
Situm
|
|
5
|
+
[Situm Wayfinding](https://situm.com/wayfinding) for Capacitor and Cordova. Integrate plug&play navigation experience with floorplans, POIs, routes and turn-by-turn directions in no time. With the power of [Situm](https://www.situm.com/).
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
-
|
|
10
|
-
|
|
7
|
+
This plugin has two parts:
|
|
8
|
+
|
|
9
|
+
- The base SDK, the building blocks that allow you to:
|
|
10
|
+
|
|
11
|
+
- obtain information related to buildings where Situm's positioning system is already configured: floorplans, points of interest, geotriggered events, etc.
|
|
12
|
+
- retrieve the location of the smartphone inside these buildings (position, orientation, and floor where the smartphone is).
|
|
13
|
+
- compute a route from a point A (e.g. where the smartphone is) to a point B (e.g. any point of interest within the building).
|
|
14
|
+
- trigger notifications when the user enters a certain area.
|
|
15
|
+
|
|
16
|
+
- A full featured and easy to integrate UI component (`<map-view>`) that allows you to:
|
|
17
|
+
- show your cartography on a map
|
|
18
|
+
- show the user location on the map
|
|
19
|
+
- calculate point-to-point wayfinging routes
|
|
20
|
+
- explore points of interest on your buildings on the map
|
|
11
21
|
|
|
12
22
|
<div align="center" style="text-align:center">
|
|
13
23
|
|
|
@@ -90,6 +90,15 @@ jobs:
|
|
|
90
90
|
MAPVIEWERDOMAIN: $(MAPVIEWERDOMAIN)
|
|
91
91
|
BUILDNUMBER: $(BUILDNUMBER)
|
|
92
92
|
|
|
93
|
+
- ${{ if ne(variables['Build.Reason'],'manual') }}:
|
|
94
|
+
- template: azure-templates/teams-notifier.yml@sys_kubernetes_templates
|
|
95
|
+
parameters:
|
|
96
|
+
channelId: $(releasesMobileChannelId)
|
|
97
|
+
teamID: $(releasesMobileTeamId)
|
|
98
|
+
messageType: "error"
|
|
99
|
+
message: "Hey Team, 🚨 our <strong>Capacitor Android Example App auto build</strong> just took a dive off the high board and belly-flopped! 🚨 Let's put on our lifeguard hats and dive in for a rescue mission! 🚑 Time to debug and bring that pipeline back to smooth sailing! 🛠️⚓ Alert level: High! Let's fix it! 🚨"
|
|
100
|
+
|
|
101
|
+
|
|
93
102
|
#===============================================================
|
|
94
103
|
# Job for iOS app
|
|
95
104
|
#===============================================================
|
|
@@ -145,3 +154,10 @@ jobs:
|
|
|
145
154
|
BUILDINGID: $(BUILDINGID)
|
|
146
155
|
BUILDNUMBER: $(BUILDNUMBER)
|
|
147
156
|
|
|
157
|
+
- ${{ if ne(variables['Build.Reason'],'manual') }}:
|
|
158
|
+
- template: azure-templates/teams-notifier.yml@sys_kubernetes_templates
|
|
159
|
+
parameters:
|
|
160
|
+
channelId: $(releasesMobileChannelId)
|
|
161
|
+
teamID: $(releasesMobileTeamId)
|
|
162
|
+
messageType: "error"
|
|
163
|
+
message: "Hey Team, 🚨 our <strong>Capacitor iOS Example App auto build</strong> just took a dive off the high board and belly-flopped! 🚨 Let's put on our lifeguard hats and dive in for a rescue mission! 🚑 Time to debug and bring that pipeline back to smooth sailing! 🛠️⚓ Alert level: High! Let's fix it! 🚨"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@situm/cordova",
|
|
3
|
-
"version": "3.4.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "3.4.3",
|
|
4
|
+
"description": "Situm Wayfinding for Capacitor and Cordova. Integrate plug&play indoor navigation experience with floorplans, POIs, routes and turn-by-turn directions in no time. With the power of Situm.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"repository": "https://github.com/situmtech/cordova",
|
|
7
7
|
"author": "Situm Technologies <mobile@situm.com>",
|
package/plugin.xml
CHANGED
|
@@ -44,7 +44,7 @@ dependencies {
|
|
|
44
44
|
implementation ('com.googlecode.json-simple:json-simple:1.1.1'){
|
|
45
45
|
exclude group: 'junit', module:'junit'
|
|
46
46
|
}
|
|
47
|
-
implementation ('es.situm:situm-sdk:3.
|
|
47
|
+
implementation ('es.situm:situm-sdk:3.12.0@aar') {
|
|
48
48
|
transitive = true
|
|
49
49
|
}
|
|
50
50
|
implementation 'org.apache.cordova:framework:10.1.1'
|
package/src/android/situm.gradle
CHANGED