111 lines
4.3 KiB
Plaintext
111 lines
4.3 KiB
Plaintext
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
id("com.google.devtools.ksp") version "1.6.21-1.0.6"
|
|
id("org.jetbrains.kotlin.plugin.serialization") version "1.8.10"
|
|
kotlin("kapt")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.example.pmu_dozorova"
|
|
compileSdk = 33
|
|
|
|
defaultConfig {
|
|
applicationId = "com.example.pmu_dozorova"
|
|
minSdk = 24
|
|
targetSdk = 33
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary = true
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = "1.4.3"
|
|
}
|
|
packaging {
|
|
resources {
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation("androidx.core:core-ktx:1.9.0")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2")
|
|
implementation("androidx.activity:activity-compose:1.7.2")
|
|
implementation(platform("androidx.compose:compose-bom:2023.03.00"))
|
|
implementation("androidx.compose.ui:ui")
|
|
implementation("androidx.compose.ui:ui-graphics")
|
|
implementation("androidx.compose.ui:ui-tooling-preview")
|
|
implementation("androidx.compose.material3:material3")
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
|
androidTestImplementation(platform("androidx.compose:compose-bom:2023.03.00"))
|
|
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
|
|
debugImplementation("androidx.compose.ui:ui-tooling")
|
|
debugImplementation("androidx.compose.ui:ui-test-manifest")
|
|
|
|
implementation ("com.google.accompanist:accompanist-insets:0.23.1")
|
|
implementation ("com.google.android.exoplayer:exoplayer-core:2.17.1")
|
|
implementation ("com.google.android.exoplayer:exoplayer-ui:2.17.1")
|
|
implementation("androidx.navigation:navigation-compose:2.6.0")
|
|
|
|
implementation ("androidx.compose.material3:material3:1.1.2")
|
|
implementation ("io.github.boguszpawlowski.composecalendar:composecalendar:1.1.1")
|
|
//implementation ("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3")
|
|
|
|
val room_version = "2.5.2"
|
|
// implementation ("android.arch.persistence.room:runtime:$room_version")
|
|
// annotationProcessor ("android.arch.persistence.room:compiler:$room_version")
|
|
// kapt ("android.arch.persistence.room:compiler:$room_version")
|
|
implementation("androidx.room:room-runtime:$room_version")
|
|
kapt("androidx.room:room-compiler:$room_version")
|
|
//ksp("androidx.room:room-compiler:$room_version")
|
|
implementation("androidx.room:room-ktx:2.5.0-alpha02")
|
|
implementation("androidx.room:room-paging:$room_version")
|
|
val paging_version = "3.1.1"
|
|
implementation ("androidx.paging:paging-runtime:$paging_version")
|
|
// alternatively - without Android dependencies for tests
|
|
testImplementation ("androidx.paging:paging-common:$paging_version")
|
|
// optional - RxJava2 support
|
|
implementation ("androidx.paging:paging-rxjava2:$paging_version")
|
|
// optional - RxJava3 support
|
|
implementation ("androidx.paging:paging-rxjava3:$paging_version")
|
|
// optional - Guava ListenableFuture support
|
|
implementation ("androidx.paging:paging-guava:$paging_version")
|
|
// optional - Jetpack Compose integration
|
|
implementation ("androidx.paging:paging-compose:1.0.0-alpha18")
|
|
|
|
// retrofit
|
|
val retrofitVersion = "2.9.0"
|
|
implementation("com.squareup.retrofit2:retrofit:$retrofitVersion")
|
|
implementation("com.squareup.okhttp3:logging-interceptor:4.11.0")
|
|
implementation("androidx.paging:paging-compose:3.2.1")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1")
|
|
implementation("com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:1.0.0")
|
|
} |