[ADD] add empty project

This commit is contained in:
Sem van der Hoeven
2020-12-08 10:33:41 +01:00
parent 9fba97ed88
commit 0436e494d6
34 changed files with 722 additions and 0 deletions

24
build.gradle Normal file
View File

@@ -0,0 +1,24 @@
// 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:4.1.1"
// 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
}