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
328328// SN-2015-05-13: [[ AndroidVersions ]] Make the available Android minimum versions
329329// something changeable from a script-only stack
330330function 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
333336end revIDEDeployAndroidGetVersionsList
334337
335338function revIDEDeployAndroidApiFromVersion pVersion
@@ -338,8 +341,13 @@ function revIDEDeployAndroidApiFromVersion pVersion
338341end revIDEDeployAndroidApiFromVersion
339342
340343function 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
343351end revIDEDeployAndroidGetAPIsList
344352
345353// //////////////////////////////////////////////////////////////////////////////
You can’t perform that action at this time.
0 commit comments