``` productFlavors { // Define separate...
# android
d
Copy code
productFlavors {
        // Define separate dev and prod product flavors.
        studio {
            // dev utilizes minSDKVersion = 21 to allow the Android gradle plugin
            // to pre-dex each module and produce an APK that can be tested on
            // Android Lollipop without time consuming dex merging processes.
            minSdkVersion 21
        }
        cl {
            // The actual minSdkVersion for the application.
            minSdkVersion 16
        }
    }