added butterknife and rxjava adapter
Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/commit/64681754 Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/tree/64681754 Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/diff/64681754 Branch: refs/heads/master Commit: 646817540144058e536ac10f2f517351e59bb5f8 Parents: 4076664 Author: Sagar <[email protected]> Authored: Thu May 5 22:26:20 2016 +0530 Committer: Sagar <[email protected]> Committed: Thu May 5 22:26:20 2016 +0530 ---------------------------------------------------------------------- app/build.gradle | 6 ++++++ build.gradle | 2 ++ 2 files changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/64681754/app/build.gradle ---------------------------------------------------------------------- diff --git a/app/build.gradle b/app/build.gradle index 7d04cba..9415e29 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,4 +1,5 @@ apply plugin: 'com.android.application' +apply plugin: 'com.neenbedankt.android-apt' android { compileSdkVersion 23 @@ -36,8 +37,13 @@ dependencies { compile 'com.android.support:design:23.3.0' compile 'com.squareup.retrofit2:retrofit:2.0.2' + compile "com.squareup.retrofit2:adapter-rxjava:2.0.2" + compile 'com.jakewharton:butterknife:8.0.1' + apt 'com.jakewharton:butterknife-compiler:8.0.1' + compile 'io.reactivex:rxandroid:1.2.0' // Because RxAndroid releases are few and far between, it is recommended you also // explicitly depend on RxJava's latest version for bug fixes and new features. compile 'io.reactivex:rxjava:1.1.4' + } http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/64681754/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index f6e9073..36d6192 100644 --- a/build.gradle +++ b/build.gradle @@ -3,9 +3,11 @@ buildscript { repositories { jcenter() + mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:2.1.0' + classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files
