From 03986eb08e3031335d3fddd8b606fd3dc9f2d8ea Mon Sep 17 00:00:00 2001 From: danijoo Date: Thu, 31 Dec 2015 01:54:38 +0100 Subject: [PATCH] added dependencies --- app/build.gradle | 17 +++++++++++++++++ build.gradle | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 825a191..3f55484 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -28,8 +28,25 @@ android { } } +apply plugin: 'com.neenbedankt.android-apt' + dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.1.1' + compile 'com.android.support:design:23.1.1' + compile 'com.android.support:recyclerview-v7:23.1.1' + compile 'com.android.support:preference-v7:23.1.1' + + compile 'com.squareup:javapoet:1.2.0' + compile 'ckm.simple:simple_sql_provider_annotation:1.0.6' + compile 'ckm.simple:simple_sql_provider_processor:1.0.6' + + compile 'com.jakewharton:butterknife:7.0.1' + compile 'com.google.code.gson:gson:2.5' + compile 'com.jakewharton.timber:timber:4.1.0' + compile 'com.squareup.picasso:picasso:2.5.2' + compile('com.mikepenz:aboutlibraries:5.3.6@aar') { + transitive = true + } } diff --git a/build.gradle b/build.gradle index c57c2c6..ba8c1db 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:2.0.0-alpha3' - + classpath 'com.neenbedankt.gradle.plugins:android-apt:1.6' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files }