Details
-
Bug
-
Resolution: Done
-
P2: Important
-
1.10.0
-
None
-
* Host: Windows 10 64bit
* NDK r16b
* SDK 25.xx
-
daba827d0c1e9f69bc62260b24aa1691bdb9ff52
Description
This code from 'AndroidSdkProbe.qbs':
... if (File.exists(FileInfo.joinPaths(allPaths[i], "tools", "android"))) ...
skipped the 'tools/android.bat' file, because on Windows's SDK this file has a '.bat' suffix.
Result should be something like:
var file = "android"; if (qbs.hostOS.contains("windows")) file += ".bat"; if (File.exists(FileInfo.joinPaths(allPaths[i], "tools", file))) {