58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
Plaintext
plugins {
|
|
id("com.android.application")
|
|
id("kotlin-kapt")
|
|
id("org.jetbrains.kotlin.android")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.example.applock"
|
|
compileSdk = 34
|
|
|
|
|
|
defaultConfig {
|
|
applicationId = "com.soft.ware.lock.hd"
|
|
minSdk = 23
|
|
targetSdk = 34
|
|
versionCode = 4
|
|
versionName = "1.0.0"
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = true
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
dataBinding{
|
|
enable=true;
|
|
}
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.appcompat)
|
|
implementation(libs.material)
|
|
implementation(libs.activity)
|
|
implementation(libs.constraintlayout)
|
|
implementation(libs.drawerlayout)
|
|
testImplementation(libs.junit)
|
|
androidTestImplementation(libs.ext.junit)
|
|
androidTestImplementation(libs.espresso.core)
|
|
implementation ("androidx.work:work-runtime:2.9.0")
|
|
implementation("androidx.room:room-ktx:2.6.1")
|
|
implementation("androidx.room:room-runtime:2.6.1")
|
|
kapt("androidx.room:room-compiler:2.6.1")
|
|
implementation ("androidx.work:work-runtime:2.9.0")
|
|
} |