minSdkVersion 19 (mainly for security reason and also because of MotionLayout only supported on API 18)

This commit is contained in:
Benoit Marty 2019-06-28 10:06:36 +02:00
parent 76fc455d93
commit f410538e2f

View File

@ -58,7 +58,9 @@ android {
compileSdkVersion 28 compileSdkVersion 28
defaultConfig { defaultConfig {
applicationId "im.vector.riotredesign" 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 targetSdkVersion 28
multiDexEnabled true multiDexEnabled true
versionCode generateVersionCodeFromTimestamp() versionCode generateVersionCodeFromTimestamp()