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



How to configure the build.gradle file

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 the build gradle file in android