Skip to content

Commit 8ebf066

Browse files
committed
Update Gradle and dependencies
1 parent 8023f24 commit 8ebf066

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

app/build.gradle.kts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,28 @@ android {
1919

2020
buildTypes {
2121
release {
22-
isMinifyEnabled = false
22+
isMinifyEnabled = true
23+
isShrinkResources = true
2324
proguardFiles(
2425
getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
2526
)
2627
}
2728
}
2829

30+
buildFeatures {
31+
viewBinding = true
32+
}
33+
2934
compileOptions {
3035
sourceCompatibility = JavaVersion.VERSION_21
3136
targetCompatibility = JavaVersion.VERSION_21
3237
}
3338

39+
dependenciesInfo {
40+
includeInApk = false
41+
includeInBundle = false
42+
}
43+
3444
kotlin {
3545
compilerOptions {
3646
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Thu Aug 21 22:52:53 BRT 2025
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ pluginManagement {
1313
gradlePluginPortal()
1414
}
1515
}
16+
1617
dependencyResolutionManagement {
1718
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
1819
repositories {

0 commit comments

Comments
 (0)