我正在使用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"
}

最佳答案

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

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

10-08 03:21