Move common gradle setup to a single file

Original idea by @TacoTheDank
This commit is contained in:
ByteHamster
2021-05-11 22:14:56 +02:00
parent 65bf8bf70c
commit c72fd81886
12 changed files with 137 additions and 494 deletions

11
playFlavor.gradle Normal file
View File

@ -0,0 +1,11 @@
android {
flavorDimensions "market"
productFlavors {
free {
dimension "market"
}
play {
dimension "market"
}
}
}