Is there any chance to generate model files when we are using compatibility with java 8?
You are probably aware of that, but if you are not then: When we put this:
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
jackOptions {
enabled true
}
in our gradle -> your annotation processor is not working. Any solution for that?
Is there any chance to generate
model fileswhen we are using compatibility with java 8?You are probably aware of that, but if you are not then: When we put this:
in our gradle -> your annotation processor is not working. Any solution for that?