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-11 16:37:28 +0300
committerNiedermann IT-Dienstleistungen <info@niedermann.it>2018-04-11 16:37:28 +0300
commit45aeab02708638fac7b1b1dcbc315107b8da75fc (patch)
treead8840c0dc05c82d7e627d921ab3b60055075d7c /app/build.gradle
parentb86ad96ded2b7771051bcbb807ed801b78a6bfcc (diff)
Introduce ButterKnife and code reformat
http://jakewharton.github.io/butterknife/
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle
index a390a706..a5f376c2 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -28,12 +28,17 @@ dependencies {
implementation 'com.yydcdut:rxmarkdown:0.1.1-beta'
+
+ implementation 'com.jakewharton:butterknife:8.8.1'
+ annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
+
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)
+ // needed for cert4android (conflict resolution)
+ implementation "com.android.support:cardview-v7:${supportLibVersion}"
implementation fileTree(dir: 'libs', include: ['*.jar'])
}