Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

annotationprocessor and apt configure equivalent

I'm using AndroidAnnotaion, but due to Android Studio 2.3 and Gradle 2.3.0, they said android-apt was obsoleted. And annotationProcessor is a new one. so, I want to know how can I configure annotationProcessor like I do with apt before.

If I misunderstand something, please help.

So, before...

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'
    }
}

and now...

dependencies {

    def AAVersion = '4.2.0'
    annotationProcessor "org.androidannotations:androidannotations:$AAVersion"
    compile "org.androidannotations:androidannotations-api:$AAVersion"
}
like image 209
Jongz Puangput Avatar asked Mar 06 '17 09:03

Jongz Puangput


1 Answers

You can pass annotation processing configuration options in the following way:

android {
  defaultConfig {
    javaCompileOptions {
      annotationProcessorOptions {
        arguments = ['library': 'true']
      }
    }
  }
}
like image 141
WonderCsabo Avatar answered Nov 17 '22 04:11

WonderCsabo