annotationprocessor和apt配置等价物

时间:2017-03-06 09:36:36

标签: android android-gradle android-annotations android-apt annotation-processor

我正在使用AndroidAnnotaion,但由于Android Studio 2.3和Gradle 2.3.0,他们说android-apt已经过时了。而annotationProcessor是一个新的。所以,我想知道如何配置annotationProcessor,就像我之前使用apt一样。

如果我误解了什么,请帮助。

所以,之前......

apply plugin: 'android-apt'

dependencies {

    def AAVersion = '4.2.0'
    apt "org.androidannotations:androidannotations:$AAVersion"
    compile "org.androidannotations:androidannotations-api:$AAVersion"
}

apt {
    arguments {
        library 'true'
    }
}

现在......

dependencies {

    def AAVersion = '4.2.0'
    annotationProcessor "org.androidannotations:androidannotations:$AAVersion"
    compile "org.androidannotations:androidannotations-api:$AAVersion"
}

1 个答案:

答案 0 :(得分:5)

您可以通过以下方式传递注释处理配置选项:

android {
  defaultConfig {
    javaCompileOptions {
      annotationProcessorOptions {
        arguments = ['library': 'true']
      }
    }
  }
}