Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Switch to using Java 8 DateTime instead of Calendar
  • Loading branch information
thellmund committed Jan 6, 2022
commit d447296d2422c62d44aae4f636eec79f6bd15d43
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ buildscript {
}
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath 'com.android.tools.build:gradle:4.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'org.jlleitschuh.gradle:ktlint-gradle:10.0.0'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.38.0'
classpath 'org.jlleitschuh.gradle:ktlint-gradle:10.2.0'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.39.0'
}
}

Expand Down
4 changes: 4 additions & 0 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,21 @@ android {
defaultConfig {
minSdkVersion buildConfig.minSdk
targetSdkVersion buildConfig.targetSdk
multiDexEnabled true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
coreLibraryDesugaringEnabled true
}
testOptions {
unitTests.includeAndroidResources = true
}
}

dependencies {
coreLibraryDesugaring libraries.coreLibraryDesugaring

implementation project(':base')
implementation libraries.kotlin

Expand Down
338 changes: 0 additions & 338 deletions core/src/main/java/com/alamkanak/weekview/CalendarExtensions.kt

This file was deleted.

Loading