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