在Android Studio中使用androidannotations(安卓注解)的方法(通过Gradle添加)

1. 首先在project的Gradle中添加:

buildscript {
    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'
    }
}

2. 在module的Gradle中添加:

apply plugin: 'com.android.application'
apply plugin: 'android-apt'
def AAVersion = '{androidannotations最新的版本}'

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'
    }
}

3. 添加更多的AA插件:

只需将 {plugin-name} 替换为相应的插件名称即可。

dependencies {
    apt "org.androidannotations:{plugin-name}:$AAVersion"
    compile "org.androidannotations:{plugin-name}-api:$AAVersion"
}

参考官方文档

你可能感兴趣的:(android,studio,gradle,安卓注解)