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

View file

@ -0,0 +1,9 @@
project.ext {
defaultCompileSdkVersion = 32
defaultMinSdkVersion = 23
defaultTargetSdkVersion = 32
defaultVersionCode = 1
defaultVersionName = "1.0"
compileCompatibility = JavaVersion.VERSION_1_8
kotlinJvmTarget = "1.8"
}

View file

@ -0,0 +1,7 @@
project.ext {
compose_version = "1.2.0-beta03"
kotlin_coroutine_version = "1.5.2"
appcompat_version = "1.4.0"
kotlin_version = "1.6.10"
composeKotlinCompilerExtensionVersion = "1.1.1"
}