@situm/cordova 3.5.21 → 3.5.23

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.
@@ -122,17 +122,17 @@ steps:
122
122
  npm i -g $(office365Cli)
123
123
 
124
124
  echo -e "\n[+] Login in Sharepoint \n"
125
- m365 login --authType password --userName $(sharepoint_user) --password $(sharepoint_pass)
125
+ m365 login --authType password --userName $(sharepoint_user) --password $(sharepoint_pass) --appId $(sharepoint_appId)
126
126
 
127
127
  echo -e "\n[+] Create Branch folder $folder/$branchFolder\n"
128
- m365 spo folder add -p $folder -u $(SharepointUrl) --name $branchFolder
128
+ m365 spo folder add -p "$folder" -u $(SharepointUrl) --name "$branchFolder"
129
129
 
130
130
  echo -e "\n[+] Create Destination folder $folder/$branchFolder/$destinationFolder\n"
131
- m365 spo folder add -p $folder/$branchFolder -u $(SharepointUrl) --name $destinationFolder
131
+ m365 spo folder add -p "$folder/$branchFolder" -u $(SharepointUrl) --name "$destinationFolder"
132
132
 
133
133
  echo -e "\n[+] Upload APK to $folder/$branchFolder/$destinationFolder\n"
134
134
  cd example/android/app/build/outputs/apk/debug
135
135
  mv app-debug.apk ${{ parameters.BUILDNUMBER }}-debug.apk
136
- m365 spo file add -p ${{ parameters.BUILDNUMBER }}-debug.apk -u $(SharepointUrl) -f $folder/$branchFolder/$destinationFolder
136
+ m365 spo file add -p ${{ parameters.BUILDNUMBER }}-debug.apk -u $(SharepointUrl) --folder "$folder/$branchFolder/$destinationFolder"
137
137
 
138
138
  displayName: Upload APK
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@situm/cordova",
3
- "version": "3.5.21",
3
+ "version": "3.5.23",
4
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",
package/plugin.xml CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
4
4
  id="@situm/cordova"
5
- version="3.5.21">
5
+ version="3.5.23">
6
6
  <name>Situm Cordova plugin Official</name>
7
7
  <description>This is the stable branch.</description>
8
8
  <license>MIT</license>
@@ -93,7 +93,7 @@
93
93
  <config>
94
94
  </config>
95
95
  <pods use-frameworks="false">
96
- <pod name="SitumSDK" spec="~> 3.15.3"/>
96
+ <pod name="SitumSDK" spec="~> 3.15.4"/>
97
97
  </pods>
98
98
  </podspec>
99
99
 
@@ -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.16.2@aar') {
47
+ implementation ('es.situm:situm-sdk:3.17.0@aar') {
48
48
  transitive = true
49
49
  }
50
50
  implementation 'org.apache.cordova:framework:10.1.1'
@@ -12,7 +12,7 @@ allprojects {
12
12
 
13
13
  dependencies {
14
14
  implementation 'com.google.android.gms:play-services-location:16.0.0'
15
- implementation('es.situm:situm-sdk:3.16.2@aar') {
15
+ implementation('es.situm:situm-sdk:3.17.0@aar') {
16
16
  transitive = true
17
17
  }
18
18
  }
package/src/ios/Podfile CHANGED
@@ -1,5 +1,5 @@
1
1
  target 'SitumCordovaPlugin' do
2
2
  use_frameworks!
3
3
  platform :ios, '9.0'
4
- pod 'SitumSDK', '3.15.3'
4
+ pod 'SitumSDK', '3.15.4'
5
5
  end