From 5189fbf68615a788bbacb71af73c709a1aaa04f3 Mon Sep 17 00:00:00 2001 From: Moxie Marlinspike Date: Sat, 23 Sep 2017 21:26:32 -0700 Subject: [PATCH] Bump minSdk to API 14 The Android v4 and v7 support libraries now only support a minSdk of v14. This means that they are both essentially a v14 support library now. In order to bump compileSdk to 26, we'll have to update the support library, which will break < v14 compatibility. Android is essentially forcing all applications to break compatibility with devices older than API 14. // FREEBIE --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 3a5cb9954f..9c84e83d7e 100644 --- a/build.gradle +++ b/build.gradle @@ -219,7 +219,7 @@ android { versionCode 298 versionName "4.10.12" - minSdkVersion 9 + minSdkVersion 14 targetSdkVersion 22 multiDexEnabled true