AndroidStudio中第一次导入AndroidAnnotations

AndroidAnnotations 这是一个类似于spring一样的的注解框架,能够让你的代码更加简单,简洁,专注于代码的逻辑块。其中gralde 2.3

1.当前project 下的module(app)下的build.gradle文件添加如下配置代码
<pre><code>
apply plugin:'android-apt'
</code></pre>
<pre><code>
def AAVersion='3.0.1'
</code></pre>
同时加入
<pre>
apt {
arguments {
androidManifestFile variant.outputs[0].processResources.manifestFile resourcePackageName "anjibei.com(你的项目包名)"
}
}
</pre>
其中androidManifestFile variant.outputs[0].processResources.manifestFile 为gradle新版本中的写法,老版本为
androidManifestFile variant.processResources.manifestFile

然后再dependencies中加入
<pre>
apt "org.androidannotations:androidannotations:$AAVersion"
compile "org.androidannotations:androidannotations-api:$AAVersion"
</pre>
看图

Paste_Image.png

2.更改整个project 的build.gradle文件中的配置
<pre>
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'//Added line
</pre>

如图


Paste_Image.png

3.build project 进行使用

Paste_Image.png

配置AndroidManifest.xml,将LoginActivity更改为LoginActivity_

Paste_Image.png

4.run app
5.配置完成,具体AndroidAnnotations 语法请参考官网文档

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容