From 939f6ff49cc093c239d904368baa912206dbb68a Mon Sep 17 00:00:00 2001 From: dankito Date: Fri, 23 Oct 2020 01:17:36 +0200 Subject: [PATCH] Set min Android version to Lollipop as versions below don't support TLS - which is required by almost all banks - out of the box but still have SSLv3 enabled by default --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 37085909..88804ab9 100644 --- a/build.gradle +++ b/build.gradle @@ -38,7 +38,7 @@ ext { androidBuildToolsVersion = "28.0.6" - androidMinSdkVersion = 16 + androidMinSdkVersion = 21 // TODO: fix SSLv3 / TLS and set back to 16 androidTargetSdkVersion = 28