writand/build.gradle

13 lines
533 B
Groovy
Raw Permalink Normal View History

2024-07-16 09:40:31 +02:00
buildscript {
ext {
2024-11-21 21:53:03 +01:00
kotlin_version = '1.9.21'
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-11-21 21:53:03 +01:00
id 'com.android.application' version '8.7.2' apply false
id 'com.android.library' version '8.7.2' apply false
id 'org.jetbrains.kotlin.android' version '1.9.21' 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
}