9

What is the use and meaning of following code of block?

buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
Kailas Bhakade
  • 1,902
  • 22
  • 27

1 Answers1

7

Using this code block you can configure your build.gradle file for proguard implementation and Flag minifyEnabled stays for ProGuard, and it's turned off by default.

check this for more informations minifyEnabled, ProGuard and What is minifyEnabled

Community
  • 1
  • 1
Ankush Guhe
  • 797
  • 4
  • 17