File tree Expand file tree Collapse file tree 5 files changed +24
-9
lines changed Expand file tree Collapse file tree 5 files changed +24
-9
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,8 @@ import com.android.build.gradle.internal.dsl.TestOptions
33android {
44 buildTypes {
55 named(" release" ).configure {
6- postprocessing {
7- consumerProguardFiles(" auth-proguard.pro" )
8- }
6+ isMinifyEnabled = false
7+ consumerProguardFiles(" proguard-rules.pro" )
98 }
109 }
1110
Original file line number Diff line number Diff line change 1+ android {
2+ buildTypes {
3+ named(" release" ).configure {
4+ isMinifyEnabled = false
5+ consumerProguardFiles(" proguard-rules.pro" )
6+ }
7+ }
8+ }
9+
110dependencies {
211 api(Config .Libs .Arch .runtime)
312 api(Config .Libs .Arch .viewModel)
Original file line number Diff line number Diff line change @@ -7,9 +7,8 @@ android {
77
88 buildTypes {
99 named(" release" ).configure {
10- postprocessing {
11- consumerProguardFiles(" proguard-rules.pro" )
12- }
10+ isMinifyEnabled = false
11+ consumerProguardFiles(" proguard-rules.pro" )
1312 }
1413 }
1514}
Original file line number Diff line number Diff line change @@ -8,9 +8,8 @@ android {
88
99 buildTypes {
1010 named(" release" ).configure {
11- postprocessing {
12- consumerProguardFiles(" proguard-rules.pro" )
13- }
11+ isMinifyEnabled = false
12+ consumerProguardFiles(" proguard-rules.pro" )
1413 }
1514 }
1615}
Original file line number Diff line number Diff line change 1+ android {
2+ buildTypes {
3+ named(" release" ).configure {
4+ isMinifyEnabled = false
5+ consumerProguardFiles(" proguard-rules.pro" )
6+ }
7+ }
8+ }
9+
110dependencies {
211 api(Config .Libs .Misc .glide)
312
You can’t perform that action at this time.
0 commit comments