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

github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiedermann IT-Dienstleistungen <info@niedermann.it>2018-04-06 21:36:35 +0300
committerNiedermann IT-Dienstleistungen <info@niedermann.it>2018-04-06 21:36:35 +0300
commit19fc0d611ee115ccc77cfed1e3b74e31540c0c54 (patch)
tree9eb5e582827dbdef8b3a56122cb0f4cb76c0d50d /app/build.gradle
parentbaff5083766fffe4bd07697179599f88ec94f633 (diff)
Update dependencies
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle16
1 files changed, 8 insertions, 8 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 3e9077df..480cab79 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -24,15 +24,15 @@ android {
}
dependencies {
- compile project(':cert4android')
+ implementation project(':cert4android')
compile 'com.yydcdut:rxmarkdown:0.1.1-beta'
- def supportLibVersion = '27.1.0'
- compile "com.android.support:support-v4:${supportLibVersion}"
- compile "com.android.support:appcompat-v7:${supportLibVersion}"
- compile "com.android.support:design:${supportLibVersion}"
- compile "com.android.support:recyclerview-v7:${supportLibVersion}"
- compile "com.android.support:cardview-v7:${supportLibVersion}" // needed for cert4android (conflict resolution)
- compile fileTree(dir: 'libs', include: ['*.jar'])
+ def supportLibVersion = '27.1.1'
+ implementation "com.android.support:support-v4:${supportLibVersion}"
+ implementation "com.android.support:appcompat-v7:${supportLibVersion}"
+ implementation "com.android.support:design:${supportLibVersion}"
+ implementation "com.android.support:recyclerview-v7:${supportLibVersion}"
+ implementation "com.android.support:cardview-v7:${supportLibVersion}" // needed for cert4android (conflict resolution)
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
}