44 lines
1.1 KiB
Text
44 lines
1.1 KiB
Text
![]() |
plugins {
|
||
|
alias(libs.plugins.android.application)
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "com.example.notifyservice"
|
||
|
compileSdk = 34
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId = "com.example.notifyservice"
|
||
|
minSdk = 24
|
||
|
targetSdk = 34
|
||
|
versionCode = 1
|
||
|
versionName = "1.0"
|
||
|
|
||
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
isMinifyEnabled = false
|
||
|
proguardFiles(
|
||
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||
|
"proguard-rules.pro"
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
|
||
|
implementation(libs.appcompat)
|
||
|
implementation(libs.material)
|
||
|
implementation(libs.activity)
|
||
|
implementation(libs.constraintlayout)
|
||
|
testImplementation(libs.junit)
|
||
|
androidTestImplementation(libs.ext.junit)
|
||
|
androidTestImplementation(libs.espresso.core)
|
||
|
implementation(libs.okhttp)
|
||
|
}
|