Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bitfireAT/cert4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicki Hirner <hirner@bitfire.at>2020-09-19 14:19:55 +0300
committerRicki Hirner <hirner@bitfire.at>2020-09-19 14:19:55 +0300
commit72cf235ad9ba20acca61da3b9f5f7c5aa7457d5c (patch)
treee67d9a9faadf15ebd249ad79c513145a4c1e643f
parent77611bb504005cc24653496c828a6c73c42bbb8b (diff)
Remove unnecessary dependencies
-rw-r--r--build.gradle7
1 files changed, 2 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle
index 65bb0aa..4f6721a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -32,8 +32,8 @@ android {
buildToolsVersion '30.0.2'
defaultConfig {
- minSdkVersion 14
- targetSdkVersion 29
+ minSdkVersion 14 // Android 4.0
+ targetSdkVersion 29 // Android 10
}
compileOptions {
@@ -45,7 +45,6 @@ android {
lintOptions {
disable 'MissingTranslation', 'ExtraTranslation' // translations from Transifex are not always up to date
- disable "OnClick" // doesn't recognize Kotlin onClick methods
}
defaultConfig {
@@ -75,8 +74,6 @@ dependencies {
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test:rules:1.3.0'
androidTestImplementation 'com.squareup.okhttp3:mockwebserver:4.9.0'
- androidTestImplementation 'commons-io:commons-io:2.8.0'
- androidTestImplementation 'org.apache.commons:commons-lang3:3.11'
testImplementation 'junit:junit:4.13'
}