You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The instructions suggest requiring the java plugin as a dependency. The plugin seems to do that itself, too.
A gradle project can't use both the java plugin and the android plugin.
I do not need to run JTE on Android. I need to run it during my Android project's build. I want to precompile my templates,
and use them in an annotation processor that also runs during the build, not on the target phone.
Any ideas?
The text was updated successfully, but these errors were encountered:
Yeah. The build process runs an annotation processor, which then uses JTE to generate code from those annotations. To be more specific, this is https://github.com/villevoutilainen/Jenny
I'm imagining your annotation processor depends on JTE plugin at build time. Then the main code depends on the annotation processor at its build time. So the main code build doesn't depend on the JTE plugin.
Does your annotation processor need to be built with the Android toolchain?
The instructions suggest requiring the java plugin as a dependency. The plugin seems to do that itself, too.
A gradle project can't use both the java plugin and the android plugin.
I do not need to run JTE on Android. I need to run it during my Android project's build. I want to precompile my templates,
and use them in an annotation processor that also runs during the build, not on the target phone.
Any ideas?
The text was updated successfully, but these errors were encountered: