From 0a7d5d89cf864a25e81d286bce20d2e8173eef4d Mon Sep 17 00:00:00 2001 From: Branden Archer Date: Tue, 17 May 2016 14:30:40 -0400 Subject: [PATCH] Reduce min SDK version to 11 The selection of SDK 17 was arbitrarily based on the version available on my device at the time. As no APIs are being used at that level, a lower SDK version can be targeted. According to the current distribution of Android device versions, 99.9% of devices are at SDK 11+. Changing to this for the min SDK for now. --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index a4f182a3d..32c9123ac 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -12,7 +12,7 @@ android { defaultConfig { applicationId "protect.card_locker" - minSdkVersion 17 + minSdkVersion 11 targetSdkVersion 23 versionCode 5 versionName "0.5"