Defining build types
suggest changeYou 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"
}
}
}
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents