New Branch: Full project rewrite (Beta)

This commit is contained in:
Daniel 2025-11-15 22:58:08 +03:00
commit 188bc459b1
25 changed files with 1496 additions and 0 deletions

15
build.gradle.kts Normal file
View file

@ -0,0 +1,15 @@
/*
* This file was generated by the Gradle 'init' task.
*
* This is a general purpose Gradle build.
* Learn more about Gradle by exploring our samples at https://docs.gradle.org/7.6.6/samples
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.1.2" apply false
id("org.jetbrains.kotlin.android") version "1.8.22" apply false // Понижаем версию Kotlin
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}