Modes
All variants are configured in Apptics production mode, by default. You can change the mode with respect to the build-variants in the app-level build.gradle.
The different modes in Apptics are:
- 0 - Development mode
- 2 - Testing mode
- 1 - Production mode
Copiedandroid {
}
apptics {
mode = ["debug" : "0" , "release" : "1"]
// to apply a same mode for all build-variants use "default" key
// mode = ["default": "1"]
}
dependencies {
}