Skip to content

Commit

Permalink
Upgrade gradle, Kotlin
Browse files Browse the repository at this point in the history
  • Loading branch information
rfc2822 committed Jan 26, 2022
1 parent 2b1df8f commit 16eba01
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

buildscript {
ext.versions = [
kotlin: '1.6.0',
kotlin: '1.6.10',
dokka: '1.5.0',
ical4j: '3.1.2',
// latest Apache Commons versions that don't require Java 8 (Android 7)
Expand All @@ -18,7 +18,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath 'com.android.tools.build:gradle:7.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${versions.dokka}"
}
Expand Down Expand Up @@ -57,15 +57,13 @@ android {
jvmTarget = "1.8"
useIR = true
}

lintOptions {
disable 'AllowBackup'
disable 'InvalidPackage'
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/*.md'
resources {
excludes += ['META-INF/DEPENDENCIES', 'META-INF/LICENSE', 'META-INF/*.md']
}
}
lint {
disable 'AllowBackup', 'InvalidPackage'
}

sourceSets {
Expand Down

0 comments on commit 16eba01

Please sign in to comment.