AndroidAnnotations
android依赖注入框架,主要作用于view层。
工程引入
android studio环境
工程的build.gradle如下1
2
3
4
5
6
7
8
9
10
11
12
13
14
15buildscript {
    repositories {
      mavenCentral()
    }
    dependencies {
       	 ···
        // replace with the current version of the android-apt plugin
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
    }
}
repositories {
    mavenCentral()
    mavenLocal()
}
app/build.gradle如下1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23apply plugin: 'android-apt'
def AAVersion = 'XXX'
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'
    }
}