uildscript {
repositories {
mavenCentral()
}
dependencies { // replace with the current version of the Android plugin classpath 'com.android.tools.build:gradle:1.5.0' // replace with the current version of the android-apt plugin classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' }
}
repositories {
mavenCentral()
mavenLocal()
}
apply plugin: 'com.android.application' apply plugin: 'android-apt' def AAVersion = 'XXX' dependencies {
apt "org.androidannotations:androidannotations:$AAVersion" compile "org.androidannotations:androidannotations-api:$AAVersion" }
apt {
arguments {
androidManifestFile variant.outputs[0]?.processResources?.manifestFile // if you have multiple outputs (when using splits), you may want to have other index than 0 // you should set your package name here if you are using different application IDs // resourcePackageName "your.package.name" // You can set optional annotation processing options here, like these commented options: // logLevel 'INFO' // logFile '/var/log/aa.log' }
}
android {
compileSdkVersion 23 buildToolsVersion "23.0.2" defaultConfig {
minSdkVersion 9 targetSdkVersion 23 }
}
dependencies {
apt "org.androidannotations:{plugin-name}:$AAVersion" compile "org.androidannotations:{plugin-name}-api:$AAVersion" }