Base code for Amethyst

This commit is contained in:
Vitor Pamplona
2023-01-11 13:31:20 -05:00
parent 99614f07e4
commit 7ccae7b7c3
210 changed files with 9483 additions and 0 deletions

13
build.gradle Normal file
View File

@@ -0,0 +1,13 @@
buildscript {
ext {
compose_ui_version = '1.3.2'
nav_version = "2.5.3"
room_version = "2.4.3"
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.3.1' apply false
id 'com.android.library' version '7.3.1' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
id 'org.jetbrains.kotlin.jvm' version '1.7.20' apply false
}