Skip to content

Commit

Permalink
Fix problems with JVM version. Added 1.8 option to kotlinCompiler
Browse files Browse the repository at this point in the history
  • Loading branch information
Sav22999 committed Dec 11, 2019
1 parent 34eea34 commit e0b4f86
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Common Voice Android/.idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Common Voice Android/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Common Voice Android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
kotlinOptions {
jvmTarget = "1.8"
}
}

dependencies {
Expand Down

0 comments on commit e0b4f86

Please sign in to comment.