Skip to content

Commit

Permalink
fix(gradle): explicitly define jvm version
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutoshgngwr committed Aug 24, 2019
1 parent ee475b5 commit 5f34298
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@ android {
includeAndroidResources true
}
}

compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}

kotlinOptions {
jvmTarget = "1.8"
}
}

dependencies {
Expand Down

0 comments on commit 5f34298

Please sign in to comment.