blob: a13b4257efabe9bec01016714cb5e567f6482d4a [file] [log] [blame]
plugins {
id 'com.android.application'
}
android {
buildTypes {
release {
debuggable false
}
}
flavorDimensions 'tier'
productFlavors {
paid {
dimension 'tier'
}
free {
dimension 'tier'
}
}
}
dependencies {
implementation 'junit:junit:4.13'
}