Switched build system to gradle

This commit is contained in:
Niklas Guertler 2020-05-24 14:48:11 +02:00
parent 6962f189b7
commit 72e2e13d07
57 changed files with 685 additions and 591 deletions

29
build.gradle Normal file
View file

@ -0,0 +1,29 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}