2021-09-24 18:59:36 +05:30
|
|
|
plugins {
|
2023-09-04 14:44:59 +05:30
|
|
|
alias libs.plugins.android.library
|
|
|
|
|
alias libs.plugins.kotlin.android
|
|
|
|
|
alias libs.plugins.ksp
|
2021-09-24 18:59:36 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
2022-12-19 13:26:56 +05:30
|
|
|
namespace 'com.navi.analytics'
|
2024-11-26 01:50:43 +05:30
|
|
|
compileSdk 35
|
2021-09-24 18:59:36 +05:30
|
|
|
|
|
|
|
|
defaultConfig {
|
2024-11-12 18:36:07 +05:30
|
|
|
minSdk 24
|
2024-08-13 14:30:04 +05:30
|
|
|
targetSdk 34
|
2021-09-24 18:59:36 +05:30
|
|
|
|
|
|
|
|
consumerProguardFiles "consumer-rules.pro"
|
2024-01-30 16:26:46 +05:30
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2021-09-24 18:59:36 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
2024-05-06 07:18:33 -07:00
|
|
|
minifyEnabled false
|
2021-09-24 18:59:36 +05:30
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
2024-03-29 16:09:39 +05:30
|
|
|
benchmark {
|
|
|
|
|
initWith release
|
2024-04-15 20:23:34 +05:30
|
|
|
matchingFallbacks = ['release']
|
2024-03-29 16:09:39 +05:30
|
|
|
}
|
2021-09-24 18:59:36 +05:30
|
|
|
}
|
|
|
|
|
compileOptions {
|
2024-01-30 16:26:46 +05:30
|
|
|
incremental true
|
2023-09-19 14:49:43 +05:30
|
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
|
|
|
targetCompatibility JavaVersion.VERSION_17
|
2021-09-24 18:59:36 +05:30
|
|
|
}
|
|
|
|
|
kotlinOptions {
|
2023-09-22 02:23:39 +05:30
|
|
|
freeCompilerArgs += ["-Xstring-concat=inline"]
|
2024-01-30 16:26:46 +05:30
|
|
|
jvmTarget = '17'
|
2021-09-24 18:59:36 +05:30
|
|
|
}
|
2024-03-29 16:09:39 +05:30
|
|
|
flavorDimensions = ["app"]
|
|
|
|
|
productFlavors {
|
|
|
|
|
qa {
|
|
|
|
|
isDefault true
|
|
|
|
|
dimension "app"
|
|
|
|
|
}
|
|
|
|
|
prod {
|
|
|
|
|
dimension "app"
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-24 18:59:36 +05:30
|
|
|
}
|
2022-12-19 13:26:56 +05:30
|
|
|
|
2021-09-24 18:59:36 +05:30
|
|
|
dependencies {
|
2023-11-15 13:55:28 +05:30
|
|
|
api libs.firebase.auth
|
|
|
|
|
api libs.firebase.config
|
|
|
|
|
api libs.firebase.crashlytics
|
|
|
|
|
api libs.firebase.dynamic.links
|
|
|
|
|
api libs.firebase.firestore
|
|
|
|
|
api libs.firebase.messaging
|
2023-10-19 11:27:38 +05:30
|
|
|
api libs.navi.alfred
|
2024-07-11 00:25:30 +05:30
|
|
|
api libs.retrofit.converter.gson
|
|
|
|
|
api libs.retrofit.converter.scalars
|
|
|
|
|
api libs.retrofit.retrofit
|
2023-10-19 11:27:38 +05:30
|
|
|
|
2024-01-30 16:26:46 +05:30
|
|
|
implementation project(":navi-base")
|
|
|
|
|
implementation libs.androidx.core.ktx
|
|
|
|
|
implementation libs.androidx.room.ktx
|
|
|
|
|
implementation libs.androidx.room.runtime
|
|
|
|
|
implementation libs.androidx.work.runtimeKtx
|
|
|
|
|
implementation libs.appsflyer
|
2024-02-08 20:52:15 +05:30
|
|
|
implementation libs.navi.pulse
|
2024-01-30 16:26:46 +05:30
|
|
|
|
|
|
|
|
debugImplementation libs.chucker.library
|
|
|
|
|
|
2024-03-29 16:09:39 +05:30
|
|
|
benchmarkImplementation libs.chucker.libraryNoOp
|
|
|
|
|
|
2024-01-30 16:26:46 +05:30
|
|
|
releaseImplementation libs.chucker.libraryNoOp
|
2023-04-13 08:29:21 +05:30
|
|
|
|
2023-09-04 14:44:59 +05:30
|
|
|
testImplementation libs.androidx.room.testing
|
2024-01-30 16:26:46 +05:30
|
|
|
|
|
|
|
|
ksp libs.androidx.room.compiler
|
2022-01-03 14:35:52 +05:30
|
|
|
}
|