Merge pull request #1500 from vector-im/feature/api_21

Min SDK level set to 21 (#405)
This commit is contained in:
Benoit Marty 2020-06-19 09:45:22 +02:00 committed by GitHub
commit d2f1488934
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -18,6 +18,7 @@ SDK API changes ⚠️:
Build 🧱: Build 🧱:
- Enable code optimization (Proguard) - Enable code optimization (Proguard)
- SDK is now API level 21 minimum, and so RiotX (#405)
Other changes: Other changes:
- -

View File

@ -6,7 +6,7 @@ android {
compileSdkVersion 29 compileSdkVersion 29
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 21
targetSdkVersion 29 targetSdkVersion 29
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"

View File

@ -23,7 +23,7 @@ android {
testOptions.unitTests.includeAndroidResources = true testOptions.unitTests.includeAndroidResources = true
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 21
targetSdkVersion 29 targetSdkVersion 29
versionCode 1 versionCode 1
versionName "0.0.1" versionName "0.0.1"

View File

@ -107,9 +107,8 @@ android {
compileSdkVersion 29 compileSdkVersion 29
defaultConfig { defaultConfig {
applicationId "im.vector.riotx" applicationId "im.vector.riotx"
// Set to API 19 because motionLayout is min API 18. // Set to API 21: see #405
// In the future we may consider using an alternative of MotionLayout to support API 16. But for security reason, maybe not. minSdkVersion 21
minSdkVersion 19
targetSdkVersion 29 targetSdkVersion 29
multiDexEnabled true multiDexEnabled true