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
3
3
android {
4
4
buildTypes {
5
5
named(" release" ).configure {
6
- postprocessing {
7
- consumerProguardFiles(" auth-proguard.pro" )
8
- }
6
+ isMinifyEnabled = false
7
+ consumerProguardFiles(" proguard-rules.pro" )
9
8
}
10
9
}
11
10
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
+
1
10
dependencies {
2
11
api(Config .Libs .Arch .runtime)
3
12
api(Config .Libs .Arch .viewModel)
Original file line number Diff line number Diff line change @@ -7,9 +7,8 @@ android {
7
7
8
8
buildTypes {
9
9
named(" release" ).configure {
10
- postprocessing {
11
- consumerProguardFiles(" proguard-rules.pro" )
12
- }
10
+ isMinifyEnabled = false
11
+ consumerProguardFiles(" proguard-rules.pro" )
13
12
}
14
13
}
15
14
}
Original file line number Diff line number Diff line change @@ -8,9 +8,8 @@ android {
8
8
9
9
buildTypes {
10
10
named(" release" ).configure {
11
- postprocessing {
12
- consumerProguardFiles(" proguard-rules.pro" )
13
- }
11
+ isMinifyEnabled = false
12
+ consumerProguardFiles(" proguard-rules.pro" )
14
13
}
15
14
}
16
15
}
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
+
1
10
dependencies {
2
11
api(Config .Libs .Misc .glide)
3
12
You can’t perform that action at this time.
0 commit comments