Skip to content

Commit c0c9b2f

Browse files
committed
build(app): fix 'build.gradle'
1 parent aa21476 commit c0c9b2f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

app/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@ android {
1919

2020
buildTypes {
2121
release {
22-
minifyEnabled false
22+
minifyEnabled true
2323
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2424
}
2525
}
26+
buildFeatures {
27+
viewBinding true
28+
}
2629
compileOptions {
2730
sourceCompatibility JavaVersion.VERSION_1_8
2831
targetCompatibility JavaVersion.VERSION_1_8
@@ -39,6 +42,7 @@ dependencies {
3942
implementation 'com.google.android.material:material:1.8.0'
4043
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4144
implementation 'androidx.core:core-ktx:1.9.0'
45+
4246
testImplementation 'junit:junit:4.13.2'
4347
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
4448
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

0 commit comments

Comments
 (0)