From f410538e2ffdc41e370b24557c3e41ec79b7da6b Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Fri, 28 Jun 2019 10:06:36 +0200 Subject: [PATCH] minSdkVersion 19 (mainly for security reason and also because of MotionLayout only supported on API 18) --- vector/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vector/build.gradle b/vector/build.gradle index 8fc7f70a..f8498182 100644 --- a/vector/build.gradle +++ b/vector/build.gradle @@ -58,7 +58,9 @@ android { compileSdkVersion 28 defaultConfig { applicationId "im.vector.riotredesign" - minSdkVersion 16 + // Set to API 19 because motionLayout is min API 18. + // In the future we may consider using an alternative of MotionLayout to support API 16. But for security reason, maybe not. + minSdkVersion 19 targetSdkVersion 28 multiDexEnabled true versionCode generateVersionCodeFromTimestamp()