-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
31 lines (25 loc) · 1 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
buildscript {
ext {
core_ktx_version = "1.9.0"
lifecycle_runtime_version = "2.5.1"
lifecycle_runtime_compose_version = "2.6.0-beta01"
activity_compose_version = "1.7.0"
compose_ui_version = '1.4.0'
compose_foundation_version = '1.3.1'
compose_compiler_version = "1.4.4"
material_version = "1.0.1"
material_icons_extended_version = "1.5.0-alpha01"
material_window_size_version = "1.1.0-beta01"
accompanist_version = "0.29.1-alpha"
navigation_version = "2.5.3"
junit_version = "4.13.2"
junit_test_ext_version = "1.1.5"
espresso_core_version = "3.5.1"
kotlin_version = '1.8.10'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.4.1' apply false
id 'com.android.library' version '7.4.1' apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
}