Android Studio 1.1.0 配置androidannotations框架
环境:Android Studio 1.1.0 、JDK8、Win7-x64
大致分为五步吧
进入build.gradle(Project: **)里添加classpath ‘com.neenbedankt.gradle.plugins:android-apt:1.4’,
位置如下图:
进入build.gradle(Module: **)里添加apt插件
apply plugin: ‘android-apt’进入build.gradle(Module: **)里添加apt相关设置
apt {
arguments {
androidManifestFile variant.outputs[0].processResources.manifestFile
//androidManifestFile variant.processResources.manifestFile
resourcePackageName “com.yehlu.demo”//此处填写你自己的包名
}
}进入build.gradle(Module: **)里添加相关依赖包
dependencies {
apt “org.androidannotations:androidannotations:3.2”
compile fileTree(dir: ‘libs’, include: [‘*.jar’])
compile ‘com.android.support:appcompat-v7:22.0.0’
compile “org.androidannotations:androidannotations-api:3.2”}
最后同步一下gradle,gradle不要设置离线模式
最后的文件内容是这样的
build.gradle(Project: **)
build.gradle(Module: **)
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。