2023-11-20 22:30:17 +04:00
|
|
|
buildscript {
|
|
|
|
ext {
|
|
|
|
compose_ui_version = '1.2.0'
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:4.0.0'
|
2023-12-19 23:38:12 +04:00
|
|
|
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.42'
|
2023-11-20 22:30:17 +04:00
|
|
|
}
|
|
|
|
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
plugins {
|
|
|
|
id 'com.android.application' version '7.4.2' apply false
|
|
|
|
id 'com.android.library' version '7.4.2' apply false
|
|
|
|
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
|
2023-12-22 22:10:53 +04:00
|
|
|
id 'org.jetbrains.kotlin.plugin.serialization' version '1.7.0' apply false
|
|
|
|
id 'org.jetbrains.kotlin.jvm' version '1.7.0' apply false
|
2023-11-20 22:30:17 +04:00
|
|
|
}
|