I am trying to compile my project with the next Jack compiler. I just updated Android Studio to 2.2-Beta and my gradle plugin to 2.14.1. Here\'s my gradle file:
Try removing the apply plugin: 'android-apt'
as that's a plugin that wont be needed any longer.
You are not using the apt tool, rather the annotationProcessor which is built into Gradle v2.2.0 and up.
PS: Make sure you are replacing "apt" with "annotationProcessor" in your dependencies block as well. You probably wont need classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
either