forked from capntrips/KernelFlasher
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (29 loc) · 992 Bytes
/
build.gradle
File metadata and controls
31 lines (29 loc) · 992 Bytes
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 {
accompanist_version = '0.25.0'
activity_version = '1.6.0'
appcompat_version = '1.7.0-alpha01'
compose_version = '1.3.0-rc01'
compiler_version = '1.3.0'
core_version = '1.9.0-rc01'
libsu_version = '5.0.2'
lifecycle_version = '2.5.1'
material_version = '1.8.0-alpha01'
material3_version = '1.0.0-rc01'
nav_version = '2.5.2'
okhttp_version = '4.10.0'
room_version = '2.4.3'
serialization_version = '1.4.0-RC'
splashscreen_version = '1.0.0'
}
}
plugins {
id 'com.android.application' version '7.3.1' apply false
id 'com.android.library' version '7.3.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
id 'org.jetbrains.kotlin.kapt' version '1.7.10' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '1.7.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}