Merge pull request #115 from TouchInstinct/fix/lifecycle

add java version to kotlin compile at lifecycle module
This commit is contained in:
Maxim Bachinsky 2020-02-13 13:49:03 +03:00 committed by GitHub
commit 32c1f91703
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,10 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
}
dependencies {