Created
February 26, 2015 14:18
-
-
Save georgioupanayiotis/812ac377556c0488b6ca to your computer and use it in GitHub Desktop.
Error:compileSdkVersion android-21 requires compiling with JDK 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
android { | |
compileSdkVersion 21 | |
buildToolsVersion "21.0.0" | |
defaultConfig { | |
minSdkVersion 21 | |
targetSdkVersion 21 | |
} | |
compileOptions { | |
sourceCompatibility JavaVersion.VERSION_1_7 | |
targetCompatibility JavaVersion.VERSION_1_7 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment