Defining build types

suggest change

You can create and configure build types in the module-level build.gradle file inside the android {} block.

android { … defaultConfig {…}

buildTypes {
    release {
        minifyEnabled true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }

    debug {
        applicationIdSuffix ".debug"
    }
}

}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents