我是靠谱客的博主 爱撒娇小猫咪,最近开发中收集的这篇文章主要介绍在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 Studio中使用androidannotations(安卓注解)的方法(通过Gradle添加)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复