From fa652e32a612e0a87e6e1a6348903b63a0c5ffb0 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Wed, 20 Apr 2022 22:54:42 +0000 Subject: [PATCH] Bump minimum minSdkVersion to 19. We need to land an update to the NDK prebuilts and the NDK no longer supports APIs 16-18. Bug: http://b/222341313 Test: treehugger Change-Id: I996b0eb65a7d1ae4cc0687b7ed8f533fbbba295d --- android/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/config.go b/android/config.go index cb2fc6160..9f1fd6a1b 100644 --- a/android/config.go +++ b/android/config.go @@ -778,7 +778,7 @@ func (c *config) PlatformBaseOS() string { } func (c *config) MinSupportedSdkVersion() ApiLevel { - return uncheckedFinalApiLevel(16) + return uncheckedFinalApiLevel(19) } func (c *config) FinalApiLevels() []ApiLevel {