writand/build.gradle

13 lines
531 B
Groovy
Raw Normal View History

2024-07-16 09:40:31 +02:00
buildscript {
ext {
kotlin_version = '1.9.0'
compose_ui_version = '1.6.8'
2024-07-16 09:40:31 +02:00
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
2024-09-05 21:18:43 +02:00
id 'com.android.application' version '8.6.0' apply false
id 'com.android.library' version '8.6.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
2024-08-16 23:10:10 +02:00
id 'com.google.dagger.hilt.android' version '2.49' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '1.6.21'
2024-07-16 09:40:31 +02:00
}