From 8a36744ac78c65839d778025b1e2044eb00e0833 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Mon, 5 May 2014 23:05:56 -0400 Subject: [PATCH] Remove AndroidAnnotations and switch to ButterKnife --- MinimalBible/build.gradle | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/MinimalBible/build.gradle b/MinimalBible/build.gradle index d201e34..c193c28 100644 --- a/MinimalBible/build.gradle +++ b/MinimalBible/build.gradle @@ -18,12 +18,15 @@ dependencies { compile project(path: ':jsword-minimalbible', configuration: 'buildJSword') compile project(':appcompat_v7') - apt "org.androidannotations:androidannotations:3.0+" - compile "org.androidannotations:androidannotations-api:3.0+" + // apt "org.androidannotations:androidannotations:3.0+" + // compile "org.androidannotations:androidannotations-api:3.0+" apt 'com.squareup.dagger:dagger-compiler:1.1.0' compile 'com.squareup.dagger:dagger:1.1.0' + apt 'com.jakewharton:butterknife:5.0.1' + compile 'com.jakewharton:butterknife:5.0.1' + compile 'com.readystatesoftware.systembartint:systembartint:1.0.3' compile 'de.greenrobot:eventbus:2.2.0'