Add java 7 source and target compatibility.

This commit is contained in:
Fernando Cejas
2014-12-11 21:39:08 +01:00
parent 6e285b10b9
commit 169d10fb30
4 changed files with 15 additions and 1 deletions

View File

@ -7,6 +7,12 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 19
versionCode 1
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
packagingOptions {