добавление nullable функционала к компонентам. Переписанный каледарь, почти даже работает

This commit is contained in:
2023-03-01 01:23:08 +03:00
parent cd03be5394
commit 7b2c04c595
10 changed files with 790 additions and 195 deletions
+9 -1
View File
@@ -4,7 +4,7 @@ plugins {
}
android {
compileSdk 32
compileSdk 33
defaultConfig {
applicationId "ru.megboyzz.dnevnik"
@@ -17,6 +17,7 @@ android {
vectorDrawables {
useSupportLibrary true
}
multiDexEnabled true
}
buildTypes {
@@ -32,6 +33,7 @@ android {
}
kotlinOptions {
jvmTarget = '1.8'
freeCompilerArgs = ['-Xjvm-default=compatibility']
}
buildFeatures {
compose true
@@ -75,4 +77,10 @@ dependencies {
//Библиотечка для рисования круговых диаграмок
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
//LazyHorizontalGrid
implementation 'androidx.compose.foundation:foundation:1.3.1'
// The compose calendar library
implementation 'com.kizitonwose.calendar:compose:2.1.1'
}