-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
21 lines (21 loc) · 901 Bytes
/
build.gradle
File metadata and controls
21 lines (21 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
buildscript {
ext {
compose_ui_version = '1.8.2'
accompanist_version = '0.30.1'
coil_version = "2.7.0"
room_version = "2.7.2"
navigation_version = "2.8.6"
agp_version = '8.8.2'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version "8.8.2" apply false
id 'com.android.library' version '8.1.4' apply false
id 'org.jetbrains.kotlin.android' version '2.1.0' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '2.1.0'
id "org.jetbrains.kotlin.kapt" version "2.1.0"
id 'com.android.test' version '8.1.4' apply false
id 'com.google.gms.google-services' version '4.4.3' apply false
id "com.google.firebase.crashlytics" version "3.0.6" apply false
id "org.jetbrains.kotlin.plugin.compose" version "2.1.0"
}