您的位置:首页 > 移动开发 > Android开发

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

2016-04-28 17:56 573 查看

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


参考官方文档
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息