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>2018-06-08 12:14:25 +0300
committerRicki Hirner <hirner@bitfire.at>2018-06-08 12:14:25 +0300
commit4e52388dccfed8afbfba0dfc509a54025ade300c (patch)
tree7db610b429f4a142754d1b2773cccc8428b95011
parenta9a47088d173c6e32bd1b759e66073b46463e785 (diff)
Update gradle plugin
-rw-r--r--build.gradle16
1 files changed, 8 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle
index c8e958e..78d572a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,6 +1,6 @@
buildscript {
- ext.kotlin_version = '1.2.40'
+ ext.kotlin_version = '1.2.41'
ext.dokka_version = '0.9.16'
repositories {
@@ -9,7 +9,7 @@ buildscript {
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.1.2'
+ classpath 'com.android.tools.build:gradle:3.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:${dokka_version}"
}
@@ -44,13 +44,13 @@ android {
}
dependencies {
- compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
+ implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
- compile 'com.android.support:appcompat-v7:27.1.1'
- compile 'com.android.support:cardview-v7:27.1.1'
+ implementation 'com.android.support:appcompat-v7:27.1.1'
+ implementation 'com.android.support:cardview-v7:27.1.1'
- androidTestCompile 'com.android.support.test:runner:1.0.2'
- androidTestCompile 'com.android.support.test:rules:1.0.2'
+ androidTestImplementation 'com.android.support.test:runner:1.0.2'
+ androidTestImplementation 'com.android.support.test:rules:1.0.2'
- testCompile 'junit:junit:4.12'
+ testImplementation 'junit:junit:4.12'
}