mini
This commit is contained in:
parent
3018870666
commit
b34f183066
1 changed files with 10 additions and 10 deletions
|
@ -4,7 +4,7 @@ plugins {
|
||||||
|
|
||||||
android {
|
android {
|
||||||
namespace = "com.example.notifyservice"
|
namespace = "com.example.notifyservice"
|
||||||
compileSdk = 24
|
compileSdk = 34
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId = "com.example.notifyservice"
|
applicationId = "com.example.notifyservice"
|
||||||
|
@ -19,7 +19,9 @@ android {
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
isMinifyEnabled = false
|
isMinifyEnabled = true // Obfuscate and minify codes
|
||||||
|
isShrinkResources = true // Remove unused resources
|
||||||
|
isDebuggable = false
|
||||||
proguardFiles(
|
proguardFiles(
|
||||||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||||
"proguard-rules.pro"
|
"proguard-rules.pro"
|
||||||
|
@ -34,13 +36,11 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
implementation("com.android.support:support-v4:21.0.1")
|
implementation("androidx.appcompat:appcompat:1.6.1")
|
||||||
implementation("com.android.support:appcompat-v7:21.0.1")
|
implementation("com.google.android.material:material:1.5.0")
|
||||||
implementation(libs.material)
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
||||||
implementation(libs.activity)
|
testImplementation("junit:junit:4.13.2")
|
||||||
implementation(libs.constraintlayout)
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
||||||
testImplementation(libs.junit)
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
||||||
androidTestImplementation(libs.ext.junit)
|
|
||||||
androidTestImplementation(libs.espresso.core)
|
|
||||||
implementation(libs.okhttp)
|
implementation(libs.okhttp)
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue