Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 13:50:23 +01:00
parent c7f60b13d1
commit e465363d01
120 changed files with 5776 additions and 2 deletions

25
build.gradle Normal file
View file

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