Skip to content

Commit

Permalink
Set compile options to work with Java 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey-Verkhovsky committed Sep 23, 2021
1 parent 9c8a639 commit d7a5927
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

kotlinOptions {
jvmTarget = '11'
jvmTarget = '1.8'
}
}

Expand Down
8 changes: 4 additions & 4 deletions fpjs-pro/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'maven-publish'
}

publishing {
publishing {2
publications {
mavenJava(MavenPublication) {
groupId = 'com.github.fingerprintjs'
Expand Down Expand Up @@ -42,12 +42,12 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

kotlinOptions {
jvmTarget = '11'
jvmTarget = '1.8'
}
}

Expand Down

0 comments on commit d7a5927

Please sign in to comment.