From dfa87667545917c643bd10dcbb4b4a85a1e9bb77 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 8 Jan 2018 11:14:31 +0100 Subject: [PATCH] set minSdkVersion to 14 According to https://developer.android.com/about/dashboards/index.html API levels of 14 and lower are only on less than 0.5% of the devices. IMHO it is time to move on, and allow for some compat code cleanup. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index b521b5810..68074e679 100644 --- a/build.gradle +++ b/build.gradle @@ -39,7 +39,7 @@ subprojects { project.ext { compileSdkVersion = 25 buildToolsVersion = "25.0.3" - minSdkVersion = 10 + minSdkVersion = 14 targetSdkVersion = 25 supportVersion = "25.3.1"