Initial implementation

This commit is contained in:
Gergely Hegedus 2022-06-14 10:24:02 +03:00
parent 256c243ce0
commit 0b4fa9ece7
69 changed files with 2561 additions and 0 deletions

13
build.gradle Normal file
View file

@ -0,0 +1,13 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.2.0' apply false
id 'com.android.library' version '7.2.0' apply false
id 'org.jetbrains.kotlin.android' version "1.6.10" apply false
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions.freeCompilerArgs += ["-Xuse-experimental=kotlin.Experimental"]
}
apply from: "gradlescripts/configs.gradle"
apply from: "gradlescripts/versions.gradle"