How to enable Jack (Java Android Compiler Kit) in android studio
The details on what is required to use Jack and how can be found in the documentation. Here is the relevant part from the docs that goes in build.gradle on how to use jackOptions and set the compileOptions for java 1.8. android { … defaultConfig { … jackOptions { enabled true } } compileOptions { … Read more