sense_the_rythm

rythm game for ESense Earable
git clone git://source.orangerot.dev:/university/sense_the_rythm.git
Log | Files | Refs | README | LICENSE

build.gradle (322B)


      1 allprojects {
      2     repositories {
      3         google()
      4         mavenCentral()
      5     }
      6 }
      7 
      8 rootProject.buildDir = "../build"
      9 subprojects {
     10     project.buildDir = "${rootProject.buildDir}/${project.name}"
     11 }
     12 subprojects {
     13     project.evaluationDependsOn(":app")
     14 }
     15 
     16 tasks.register("clean", Delete) {
     17     delete rootProject.buildDir
     18 }