Freebuilder In An Android Studio Java Module
I want to use FreeBuilder in a Java module in Android Studio. I added the following dependency in the module dependencies: compile 'org.inferred:freebuilder:1.10.5' Then I created
Solution 1:
A workaround solution is to add the following line to the module build.gradle dependencies:
compilefileTree(include: ['*.jar'], dir: 'build/libs')
It is not a perfect solution, because a clean and build must be done every time a change is done on any class that uses the FreeBuilder.
Post a Comment for "Freebuilder In An Android Studio Java Module"