initial commit

This commit is contained in:
Owen LeJeune
2022-09-12 21:38:44 -04:00
commit 9d1450e848
47 changed files with 1356 additions and 0 deletions

26
build.gradle Normal file
View File

@@ -0,0 +1,26 @@
buildscript {
def gradle = "7.1.2"
def kotlin = "1.6.21"
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin"
classpath "com.android.tools.build:gradle:$gradle"
}
}
}
subprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}