2023-04-19 18:10:46 +05:30
|
|
|
plugins {
|
2024-01-04 17:55:52 +05:30
|
|
|
alias libs.plugins.android.application
|
|
|
|
|
alias libs.plugins.kotlin.android
|
2023-04-19 18:10:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
namespace 'com.alfred.demo'
|
2024-01-04 16:42:13 +05:30
|
|
|
compileSdk 34
|
2023-04-19 18:10:46 +05:30
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
minSdk 21
|
2024-01-04 16:42:13 +05:30
|
|
|
targetSdk 33
|
2023-04-19 18:10:46 +05:30
|
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
vectorDrawables {
|
|
|
|
|
useSupportLibrary true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-04 16:42:13 +05:30
|
|
|
buildFeatures {
|
|
|
|
|
buildConfig true
|
|
|
|
|
}
|
2023-04-19 18:10:46 +05:30
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
compileOptions {
|
2024-01-04 16:42:13 +05:30
|
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
|
|
|
targetCompatibility JavaVersion.VERSION_17
|
2023-04-19 18:10:46 +05:30
|
|
|
}
|
|
|
|
|
kotlinOptions {
|
2024-01-04 16:42:13 +05:30
|
|
|
jvmTarget = '17'
|
2023-04-19 18:10:46 +05:30
|
|
|
}
|
|
|
|
|
packagingOptions {
|
|
|
|
|
resources {
|
|
|
|
|
excludes += '/META-INF/{AL2.0,LGPL2.1}'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2024-01-04 17:55:52 +05:30
|
|
|
implementation project(':navi-alfred')
|
|
|
|
|
|
|
|
|
|
implementation libs.android.material
|
|
|
|
|
|
|
|
|
|
implementation libs.androidx.appcompat
|
|
|
|
|
implementation libs.androidx.core.ktx
|
|
|
|
|
implementation libs.androidx.lifecycle.viewmodel.ktx
|
|
|
|
|
|
|
|
|
|
implementation libs.anrwatchdog
|
|
|
|
|
|
|
|
|
|
implementation libs.gson
|
|
|
|
|
|
|
|
|
|
androidTestImplementation libs.androidx.test.espresso.core
|
|
|
|
|
androidTestImplementation libs.androidx.test.junit
|
|
|
|
|
|
|
|
|
|
testImplementation libs.junit
|
|
|
|
|
}
|