Comment out code

This commit is contained in:
Hillel Coren 2021-02-17 21:16:10 +02:00
parent c136dcd870
commit c5bcb5b344
1 changed files with 31 additions and 0 deletions

31
android/build.gradle.foss Normal file
View File

@ -0,0 +1,31 @@
buildscript {
ext.kotlin_version = '1.3.72'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}