Skip to content

Commit

Permalink
set compile options to Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
bitmold committed Jul 24, 2020
1 parent dc536fc commit db079a4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ android {
minSdkVersion 16
targetSdkVersion 29
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
aaptOptions {
cruncherEnabled = false
}
Expand Down
4 changes: 4 additions & 0 deletions orbotservice/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ android {
archivesBaseName = "OrbotService-$versionName"

}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
Expand Down

0 comments on commit db079a4

Please sign in to comment.