2024-12-22 14:33:51 +00:00
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.android.application)
|
|
|
|
alias(libs.plugins.kotlin.android)
|
2024-12-30 13:40:50 +00:00
|
|
|
id("kotlin-parcelize")
|
2024-12-22 14:33:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "com.p_vacho.neat_calendar"
|
|
|
|
compileSdk = 34
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "com.p_vacho.neat_calendar"
|
2024-12-29 23:30:05 +00:00
|
|
|
minSdk = 26
|
2024-12-22 14:33:51 +00:00
|
|
|
targetSdk = 34
|
|
|
|
versionCode = 1
|
|
|
|
versionName = "1.0"
|
|
|
|
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
isMinifyEnabled = false
|
|
|
|
proguardFiles(
|
|
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
|
|
"proguard-rules.pro"
|
|
|
|
)
|
2025-01-11 17:37:51 +00:00
|
|
|
signingConfig = signingConfigs.getByName("debug")
|
2024-12-22 14:33:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "11"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
|
|
|
implementation(libs.androidx.core.ktx)
|
|
|
|
implementation(libs.androidx.appcompat)
|
|
|
|
implementation(libs.material)
|
|
|
|
implementation(libs.androidx.activity)
|
|
|
|
implementation(libs.androidx.constraintlayout)
|
|
|
|
testImplementation(libs.junit)
|
|
|
|
androidTestImplementation(libs.androidx.junit)
|
|
|
|
androidTestImplementation(libs.androidx.espresso.core)
|
2024-12-22 19:22:59 +00:00
|
|
|
|
2025-01-22 16:18:53 +00:00
|
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1")
|
2024-12-22 19:22:59 +00:00
|
|
|
implementation("androidx.core:core-splashscreen:1.0.1")
|
2024-12-22 22:18:42 +00:00
|
|
|
implementation("com.squareup.retrofit2:retrofit:2.11.0")
|
|
|
|
implementation("com.squareup.retrofit2:converter-gson:2.11.0")
|
2024-12-29 23:41:07 +00:00
|
|
|
implementation("com.fatboyindustrial.gson-javatime-serialisers:gson-javatime-serialisers:1.1.2")
|
2024-12-22 22:18:42 +00:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.1")
|
2024-12-24 15:48:57 +00:00
|
|
|
implementation("com.jakewharton.threetenabp:threetenabp:1.4.4")
|
2025-01-01 17:56:52 +00:00
|
|
|
implementation("com.github.Dhaval2404:ColorPicker:2.3")
|
2024-12-22 14:33:51 +00:00
|
|
|
}
|