android tutorial - How to configure build types in the build gradle in android | Developer android - android app development - android studio - android app developement



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"
            }
        }
    }
click below button to copy code from our android learning website - android tutorial - team
android {
    ...
    defaultConfig {...}
    buildTypes {...}
    productFlavors {
        demo {
            applicationId "com.example.myapp.demo"
            versionName "1.0-demo"
        }
        full {
            applicationId "com.example.myapp.full"
            versionName "1.0-full"
        }
    }
}
click below button to copy code from our android learning website - android tutorial - team

Related Searches to How to configure build types in the build gradle in android