This issue is related to annotation processing, which is now included in Gradle from version 2.2. You can fix the project and run it with the following changes.
The project level "build.gradle" removes this line:
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.2'
The application level "build.gradle" removes this line:
apply plugin: 'android-apt'
and change this line by replacing apt with annotationProcessor :
apt 'net.simonvt.schematic:schematic-compiler:0.6.3'
source share