summaryrefslogtreecommitdiff
path: root/main/build.gradle.kts
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2022-05-04 13:21:26 +0200
committerArne Schwabe <arne@rfc2549.org>2022-05-04 19:21:46 +0200
commit6d364856a35661e7dad414d38dc34c8cbd8b5985 (patch)
tree2851d7143c2a1e10a5a8735f5186f8c00a8d1b3f /main/build.gradle.kts
parent0a649719fa0c37d86078bef6f8a7f6942e6f29ff (diff)
Remove API support for API < 21 and lower (Lollipop)
Supporting just APIs 19 and 20 keeps a lot of code and the number of users is extremely small.
Diffstat (limited to 'main/build.gradle.kts')
-rw-r--r--main/build.gradle.kts5
1 files changed, 2 insertions, 3 deletions
diff --git a/main/build.gradle.kts b/main/build.gradle.kts
index 181cf84c..41a69ed9 100644
--- a/main/build.gradle.kts
+++ b/main/build.gradle.kts
@@ -18,7 +18,7 @@ android {
ndkVersion = "24.0.8215888"
defaultConfig {
- minSdk = 19
+ minSdk = 21
targetSdk = 32
versionCode = 189
versionName = "0.7.34"
@@ -188,8 +188,7 @@ dependencies {
dependencies.add("uiImplementation", "androidx.webkit:webkit:1.4.0")
dependencies.add("uiImplementation", "androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1")
dependencies.add("uiImplementation", "androidx.lifecycle:lifecycle-runtime-ktx:2.4.1")
- dependencies.add("uiImplementation", "androidx.multidex:multidex:2.0.1")
-
+
testImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.21")
testImplementation("junit:junit:4.13.2")
testImplementation("org.mockito:mockito-core:3.9.0")