12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- plugins {
- id("com.android.library")
- id("org.jetbrains.kotlin.android")
- id("com.google.devtools.ksp")
- id("com.google.dagger.hilt.android")
- id("kotlin-kapt")
- id("com.google.gms.google-services")
- }
- android {
- namespace = "io.nexilis.service"
- compileSdk = 34
- defaultConfig {
- minSdk = 23
- testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles("consumer-rules.pro")
- }
- buildTypes {
- release {
- isMinifyEnabled = false
- proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
- }
- }
- compileOptions {
- sourceCompatibility = JavaVersion.VERSION_1_8
- targetCompatibility = JavaVersion.VERSION_1_8
- }
- kotlinOptions {
- jvmTarget = "1.8"
- }
- }
- dependencies {
- implementation("androidx.core:core-ktx:1.12.0")
- implementation(files("libs/annotation.jar"))
- testImplementation("junit:junit:4.13.2")
- androidTestImplementation("androidx.test.ext:junit:1.1.5")
- androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
- implementation("androidx.room:room-runtime:2.6.1")
- annotationProcessor("androidx.room:room-compiler:2.6.1")
- ksp("androidx.room:room-compiler:2.6.1")
- implementation("androidx.room:room-ktx:2.6.1")
- implementation("androidx.room:room-paging:2.6.1")
- implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
- implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0")
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0")
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0")
- implementation("com.google.dagger:hilt-android:2.49")
- kapt("com.google.dagger:hilt-android-compiler:2.48")
- implementation("com.squareup.okhttp3:okhttp:4.12.0")
- implementation("androidx.work:work-runtime-ktx:2.9.0")
- implementation(platform("com.google.firebase:firebase-bom:32.7.2"))
- implementation("com.google.firebase:firebase-messaging-ktx")
- implementation("io.coil-kt:coil:2.6.0")
- implementation("androidx.paging:paging-common-ktx:3.2.1")
- }
- kapt {
- correctErrorTypes = true
- }
|