From e36ea8ee8b0dad61e7a44562f33566fdd0ff6f0f Mon Sep 17 00:00:00 2001 From: Rainer-Lang Date: Thu, 9 Mar 2017 18:30:26 +0100 Subject: [PATCH] annotationProcessor instead of neenbedankt.android-apt --- app/build.gradle | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 8aaca3d7..41d360d1 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,6 +1,5 @@ apply plugin: 'com.android.application' apply plugin: 'me.tatarka.retrolambda' -apply plugin: "com.neenbedankt.android-apt" apply plugin: 'com.siimkinks.sqlitemagic' apply plugin: 'com.google.firebase.firebase-crash' @@ -121,9 +120,9 @@ dependencies { compile 'uk.co.samuelwall:material-tap-target-prompt:1.9.2' compile 'com.github.k0shk0sh:RetainedDateTimePickers:1.0.2' compile 'com.zzhoujay.markdown:markdown:1.0.4' - apt "org.projectlombok:lombok:${lombokVersion}" - apt "frankiesardo:icepick-processor:${icepickVersion}" - apt "com.jakewharton:butterknife-compiler:${butterKnifeVersion}" + annotationProcessor "org.projectlombok:lombok:${lombokVersion}" + annotationProcessor "frankiesardo:icepick-processor:${icepickVersion}" + annotationProcessor "com.jakewharton:butterknife-compiler:${butterKnifeVersion}" provided "org.projectlombok:lombok:${lombokVersion}" }