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>2019-02-20 20:15:20 +0300
committerRicki Hirner <hirner@bitfire.at>2019-02-20 20:19:08 +0300
commitaaeb4de094b613e1be68d170522c42a3d974edf4 (patch)
tree4e2571d84586312d5b1d15b7caa26f695df79afa /build.gradle
parentfa58cc80d7e8262b67223178b81b5a08680e34a0 (diff)
Add test
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle7
1 files changed, 5 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 54a637c..9415182 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,6 +1,6 @@
buildscript {
- ext.kotlin_version = '1.3.20'
+ ext.kotlin_version = '1.3.21'
ext.dokka_version = '0.9.17'
repositories {
@@ -9,7 +9,7 @@ buildscript {
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.3.0'
+ classpath 'com.android.tools.build:gradle:3.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:${dokka_version}"
}
@@ -51,6 +51,9 @@ dependencies {
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test:rules:1.1.1'
+ androidTestImplementation 'com.squareup.okhttp3:mockwebserver:3.12.1'
+ androidTestImplementation 'commons-io:commons-io:2.6'
+ androidTestImplementation 'org.apache.commons:commons-lang3:3.8.1'
testImplementation 'junit:junit:4.12'
}