@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)
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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'
|
package/src/android/situm.gradle
CHANGED
package/src/ios/Podfile
CHANGED