我是靠谱客的博主 爱撒娇小猫咪,这篇文章主要介绍在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中使用androidannotations(安卓注解)的方法(通过Gradle添加)的全部内容,更多相关在Android内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部