Skip to content Skip to sidebar Skip to footer

Error With Android Gradle Plugin 0.13 And Android-apt 1.3

I've just updated my android gradle plugin from 0.12 to 0.13. Moreover I've downloaded gradle 2.1. Then, I tried with android studio 0.8.9 in beta but according http://tools.androi

Solution 1:

android-apt 1.3 doesn't seem to be compatible with v0.13 of the Android Gradle plugin. Please use android-apt 1.4 instead:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.13.0'
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

Post a Comment for "Error With Android Gradle Plugin 0.13 And Android-apt 1.3"