Skip to content

Commit

Permalink
Fix build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
qiuxiang committed Nov 17, 2021
1 parent e405685 commit b01a899
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ android {
minSdkVersion getExt('minSdkVersion', 21)
targetSdkVersion getExt('targetSdkVersion', 30)
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

kotlinOptions {
jvmTarget = '1.8'
}
}

dependencies {
Expand Down

0 comments on commit b01a899

Please sign in to comment.