blob: 6ad9d322038b37f4bd5da0286c0c9144b017def3 [file] [log] [blame]
ext {
fancyT = true
fancyF = false
}
android {
buildTypes {
release {
testCoverageEnabled fancyF
}
debug {
testCoverageEnabled fancyT
}
otherF {
testCoverageEnabled fancyF
}
otherT {
testCoverageEnabled fancyT
}
otherMissing {
}
}
}