mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-21 10:15:23 +12:00
fx
This commit is contained in:
parent
c3fd7d07ea
commit
31488a0bd4
1 changed files with 11 additions and 10 deletions
|
@ -21,20 +21,21 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
getByName("release") {
|
||||||
minifyEnabled true
|
isMinifyEnabled = true
|
||||||
shrinkResources true
|
isShrinkResources = true
|
||||||
proguardFiles(
|
proguardFiles(
|
||||||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||||
"proguard-rules.pro"
|
"proguard-rules.pro"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
debug {
|
getByName("debug") {
|
||||||
minifyEnabled false
|
isMinifyEnabled = false
|
||||||
shrinkResources false
|
isShrinkResources = false
|
||||||
debuggable true
|
isDebuggable = true
|
||||||
proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
|
proguardFiles(
|
||||||
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||||
|
"proguard-rules.pro"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -50,4 +51,4 @@ dependencies {
|
||||||
implementation("androidx.preference:preference:1.2.1")
|
implementation("androidx.preference:preference:1.2.1")
|
||||||
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
||||||
implementation("com.google.code.gson:gson:2.10.1")
|
implementation("com.google.code.gson:gson:2.10.1")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue