Skip to content

Commit

Permalink
Add compileOptions and kotlinOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Dion Segijn committed Mar 11, 2021
1 parent 55fd4b4 commit d8b194c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion konfetti/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: "com.diffplug.spotless"

ext {
PUBLISH_GROUP_ID = 'nl.dionsegijn'
PUBLISH_VERSION = "1.3.0"
PUBLISH_VERSION = "1.3.1"
PUBLISH_ARTIFACT_ID = 'konfetti'
}

Expand All @@ -26,6 +26,15 @@ android {
compileSdkVersion 29
buildToolsVersion '29.0.2'

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

kotlinOptions {
jvmTarget = '1.8'
}

defaultConfig {
minSdkVersion 15
targetSdkVersion 29
Expand Down

0 comments on commit d8b194c

Please sign in to comment.