diff options
| author | 2018-11-15 11:28:28 -0800 | |
|---|---|---|
| committer | 2018-11-27 13:58:18 -0800 | |
| commit | a3b83662b8b51b90d642a992f90689ed96a645c2 (patch) | |
| tree | 451ffc49aa0dc89ee385a8729e7a16a01c7af93d /android/config.go | |
| parent | fac114b9a502395ba3adacf2a47b604d386c5e5e (diff) | |
Up the NDK's minimum supported API level.
r18 doesn't support ICS.
Test: m checkbuild
Bug: http://b/119587551
Change-Id: I39ffa21c428bcdd7e970476bedc7d6dffb7b3c43
Diffstat (limited to 'android/config.go')
| -rw-r--r-- | android/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/config.go b/android/config.go index 0171cc069..c737b7092 100644 --- a/android/config.go +++ b/android/config.go @@ -482,7 +482,7 @@ func (c *config) PlatformSdkCodename() string { } func (c *config) MinSupportedSdkVersion() int { - return 14 + return 16 } func (c *config) DefaultAppTargetSdkInt() int { |