标签:
首先,准备好你的project。
AndroidStudio下的androidannotations配置是比较容易的,只需要配置两个build.gradle就可以。
配置build.gradle
( 1 ) 我们先配置preject目录下的build.gradle
在buildscript> dependencies>下添加
classpath‘com.neenbedankt.gradle.plugins : android-apt : 1.4‘
( 2 ) 然后是配置app目录下的build.gradle
1) 在apply plugin:‘com.android.application‘
下增加一行
apply plugin: ‘com.android.application‘
apply plugin: ‘com.neenbedankt.android-apt‘
2) 定义一个版本的常量,当前最新的版本是3.3.2
def AAVersion = ‘3.3.2‘
3) 添加依赖
dependencies {
apt "org.androidannotations : androidannotations : $AAVersion"
compile "org.androidannotations : androidannotations-api : $AAVersion"
}
4) 添加apt
apt {
arguments {
androidManifestFile variant.outputs[0].processResources.manifestFile
}
}
androidannotations-api-*.jar
和androidannotations-*.jar
。androidannotations-api-*.jar
放到工程的libs
目录下,在工程目录下新建一个目录compile-libs
,将androidannotations-*.jar
放到compile-libs
目录下。compile-libs
目录下的androidannotations-*.jar
,最后确定就可以。 [AndroidAnnotations框架]AndroidAnnotations的配置
标签:
原文地址:http://blog.csdn.net/kesarchen/article/details/50801927