Skip to content

Commit

Permalink
feat: set JVM target to 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
blaugold committed Sep 10, 2024
1 parent a7382dc commit 1dccbbe
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/iabtcf_consent_info/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,19 @@ android {
namespace "com.gabriel.terwesten.iabtcf_consent_info"
compileSdk 34

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

kotlinOptions {
jvmTarget = '1.8'
}

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}

defaultConfig {
minSdk 19
}
Expand Down

0 comments on commit 1dccbbe

Please sign in to comment.