diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2020-05-05 00:35:17 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-05-05 00:35:17 +0000 |
commit | 49f7f10f62a4da55e558ccfc43541fbbc97e7d3f (patch) | |
tree | 1d912c13b88a92d965670d0079be369f82095917 /libc/include/android/api-level.h | |
parent | 04e4d35cd74f9932c989df728f04251e4b906410 (diff) | |
parent | 14dcbf89ce6743ba037c8eddda1c6774a1137672 (diff) |
Merge "Add API constant for S."
Diffstat (limited to 'libc/include/android/api-level.h')
-rw-r--r-- | libc/include/android/api-level.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/include/android/api-level.h b/libc/include/android/api-level.h index 1b8af78cd..50cb61a6b 100644 --- a/libc/include/android/api-level.h +++ b/libc/include/android/api-level.h @@ -110,6 +110,9 @@ __BEGIN_DECLS /** Names the "R" API level (30), for comparison against `__ANDROID_API__`. */ #define __ANDROID_API_R__ 30 +/** Names the "S" API level (31), for comparison against `__ANDROID_API__`. */ +#define __ANDROID_API_S__ 31 + /** * Returns the `targetSdkVersion` of the caller, or `__ANDROID_API_FUTURE__` * if there is no known target SDK version (for code not running in the |