This repository was archived by the owner on Aug 31, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -328,8 +328,11 @@ end revIDEDeployAndroidInitialize
328
328
// SN-2015-05-13: [[ AndroidVersions ]] Make the available Android minimum versions
329
329
// something changeable from a script-only stack
330
330
function revIDEDeployAndroidGetVersionsList
331
- dispatch function "deployGetVersionsList" to stack "revDeployLibraryAndroid"
332
- return the result
331
+ local tMap
332
+ dispatch function "deployGetVersionsMap" to stack "revDeployLibraryAndroid"
333
+ put the result into tMap
334
+ combine tMap with return
335
+ return tMap
333
336
end revIDEDeployAndroidGetVersionsList
334
337
335
338
function revIDEDeployAndroidApiFromVersion pVersion
@@ -338,8 +341,13 @@ function revIDEDeployAndroidApiFromVersion pVersion
338
341
end revIDEDeployAndroidApiFromVersion
339
342
340
343
function revIDEDeployAndroidGetAPIsList
341
- dispatch function "deployGetAPIsList" to stack "revDeployLibraryAndroid"
342
- return the result
344
+ local tMap ,tAPIs
345
+ dispatch function "deployGetVersionsMap" to stack "revDeployLibraryAndroid"
346
+ put the result into tMap
347
+ put the keys of tMap into tAPIs
348
+ replace return with comma in tAPIs
349
+ sort items of tAPIs numeric ascending
350
+ return tAPIs
343
351
end revIDEDeployAndroidGetAPIsList
344
352
345
353
// //////////////////////////////////////////////////////////////////////////////
You can’t perform that action at this time.
0 commit comments