Searching the web, it is not clear if Java 8 is supported for Android development or not.
Before I download/setup Java 8, can some one point me at any \"official\" d
Easiest way to add Java 8 support
compileOptions { targetCompatibility = '1.8' sourceCompatibility = '1.8' }
Just add it in your build.gradle file.