summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2019-01-02 20:34:54 (GMT)
committerGitHub <noreply@github.com>2019-01-02 20:34:54 (GMT)
commite215e3aea88a667f5270b2d818c4bce6381f8921 (patch)
tree6cccea02f9a01b2a1a7c3e5f074fcbed5cf7764d
parenteb72b4eb1ded5492ba839cb1aa33cbe9f5f11584 (diff)
parent7d1b10b5e8bbf137395f1b3bc4a6b3e1d5753b35 (diff)
Merge pull request #1121 from xNombre/master
Add new Android API levels
-rw-r--r--config/libc/bionic.in15
1 files changed, 15 insertions, 0 deletions
diff --git a/config/libc/bionic.in b/config/libc/bionic.in
index da663b4..558c2b4 100644
--- a/config/libc/bionic.in
+++ b/config/libc/bionic.in
@@ -22,6 +22,18 @@ choice
help
The minimum for 64 bit support is 21.
+config ANDROID_API_28
+ bool
+ prompt "28"
+
+config ANDROID_API_27
+ bool
+ prompt "27"
+
+config ANDROID_API_26
+ bool
+ prompt "26"
+
config ANDROID_API_24
bool
prompt "24"
@@ -87,6 +99,9 @@ endchoice
config ANDROID_API
string
+ default "28" if ANDROID_API_28
+ default "27" if ANDROID_API_27
+ default "26" if ANDROID_API_26
default "24" if ANDROID_API_24
default "23" if ANDROID_API_23
default "22" if ANDROID_API_22