summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-08 10:18:46 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-08 10:18:46 +0200
commit6a21f6ddf39567c97f64a398002d5824c86ebb48 (patch)
tree0a63f4cced1b98b8c878543567c1876702711a06 /scripts
parent6cd263c667bd71fac0a8e9eb3aa0fb81425ddb29 (diff)
Set Android 5.0 as minimum one, older API are not compatible (nw)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/toolchain.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua
index eda81695c45..6f5476bdd0a 100644
--- a/scripts/toolchain.lua
+++ b/scripts/toolchain.lua
@@ -71,7 +71,7 @@ newoption {
newoption {
trigger = "with-android",
value = "#",
- description = "Set Android platform version (default: android-14).",
+ description = "Set Android platform version (default: android-21).",
}
newoption {
@@ -90,7 +90,7 @@ function toolchain(_buildDir, _subDir)
location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION)
- local androidPlatform = "android-14"
+ local androidPlatform = "android-21"
if _OPTIONS["with-android"] then
androidPlatform = "android-" .. _OPTIONS["with-android"]
elseif _OPTIONS["PLATFORM"]:find("64", -2) then