123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- plugins {
- id 'com.android.library'
- id 'org.jetbrains.kotlin.android'
- id 'com.google.dagger.hilt.android'
- id 'kotlin-kapt'
- id 'com.google.devtools.ksp'
- id 'com.google.gms.google-services'
- }
- android {
- namespace 'io.nexilis.service'
- compileSdk 34
- defaultConfig {
- minSdk 23
- targetSdk 34
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles "consumer-rules.pro"
- }
- buildTypes {
- release {
- minifyEnabled 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.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'
- }
- kapt {
- correctErrorTypes = true
- }
|