85 lines
2.4 KiB
Groovy
85 lines
2.4 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'com.google.devtools.ksp'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.localstore'
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId "com.localstore"
|
|
minSdk 26
|
|
targetSdk 34
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
storeFile file("${System.getenv('HOME')}/playground/app-store/signing/localstore.keystore")
|
|
storePassword "localstore123"
|
|
keyAlias "localstore"
|
|
keyPassword "localstore123"
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
signingConfig signingConfigs.release
|
|
}
|
|
debug {
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
|
|
lint {
|
|
checkReleaseBuilds false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.core:core-ktx:1.13.1'
|
|
implementation 'androidx.appcompat:appcompat:1.7.0'
|
|
implementation 'com.google.android.material:material:1.12.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.2'
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.4'
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.4'
|
|
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.8.4'
|
|
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.8.0'
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.8.0'
|
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.11.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.11.0'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'
|
|
|
|
implementation 'io.coil-kt:coil:2.6.0'
|
|
|
|
implementation 'androidx.room:room-runtime:2.6.1'
|
|
implementation 'androidx.room:room-ktx:2.6.1'
|
|
ksp 'androidx.room:room-compiler:2.6.1'
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1'
|
|
|
|
implementation 'androidx.datastore:datastore-preferences:1.1.1'
|
|
} |