Android配置AndroidAnnotations注解框架配置

1在新建的普通项目里面,新建一个compile-libs文件夹,将下载来的androidannotation-xx.jar添加到compile-libs文件夹下,将androidannotation-api-xx.jar添加到libs文件夹下  如下图

Android配置AndroidAnnotations注解框架配置

2 app  build文件的头部配置

apply plugin: 'com.neenbedankt.android-apt'

apt files('complie-libs/androidannotations-3.3.2.jar')
compile files('libs/androidannotations-api-3.3.2.jar')

apt {
arguments {
androidManifestFile variant.outputs[0]?.processResources?.manifestFile
resourcePackageName "com.huace.mop"
}
}

Android配置AndroidAnnotations注解框架配置

Android配置AndroidAnnotations注解框架配置 Android配置AndroidAnnotations注解框架配置

3 Modele gradle.build配置

dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' 如下图

Android配置AndroidAnnotations注解框架配置

上一篇:Problem : 1202 ( The calculation of GPA )


下一篇:基于JMX动态配置Log4J日志级别