aboutsummaryrefslogtreecommitdiff
path: root/build/lib
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2017-02-10 14:34:02 -0800
committerDan Albert <danalbert@google.com>2017-02-13 14:38:04 -0800
commit8a4961a0fc90791dec132cabedd2931f3acc4405 (patch)
tree218d775a3e5aaee7e4e1ef9efa533fd3eaddb5be /build/lib
parent2d2f46bbdad7084b3cef170a9e3a8b7c7c7f4bc5 (diff)
downloadndk-8a4961a0fc90791dec132cabedd2931f3acc4405.tar.gz
Update the minimum platform version to android-14.
Gingerbread is no more. Test: ./validate.py Bug: None Change-Id: I278ffdd20f41cc7bfa91489fc1502c09c0867ae8
Diffstat (limited to 'build/lib')
-rw-r--r--build/lib/build_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/lib/build_support.py b/build/lib/build_support.py
index f0602572e..cb96965a8 100644
--- a/build/lib/build_support.py
+++ b/build/lib/build_support.py
@@ -77,7 +77,7 @@ def minimum_platform_level(abi):
if abi in LP64_ABIS:
return 21
else:
- return 9
+ return 14
class Timer(object):