psychoapk/app/build.gradle.kts

46 lines
1.3 KiB
Text
Raw Normal View History

2025-01-29 23:01:25 +03:00
plugins {
alias(libs.plugins.android.application)
}
android {
namespace = "com.example.notifyservice"
2025-03-13 20:52:23 +03:00
compileSdk = 34
2025-01-29 23:01:25 +03:00
defaultConfig {
applicationId = "com.example.notifyservice"
minSdk = 24
2025-03-13 20:41:16 +03:00
//noinspection ExpiredTargetSdkVersion
2025-03-13 22:27:57 +03:00
targetSdk = 33
2025-01-29 23:01:25 +03:00
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
2025-03-13 20:52:23 +03:00
isMinifyEnabled = true // Obfuscate and minify codes
isShrinkResources = true // Remove unused resources
isDebuggable = false
2025-01-29 23:01:25 +03:00
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
dependencies {
2025-03-13 20:52:23 +03:00
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.5.0")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
2025-01-29 23:01:25 +03:00
implementation(libs.okhttp)
}