-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.gradle
35 lines (33 loc) · 862 Bytes
/
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
32
33
34
35
buildscript {
ext {
kotlin_version = '1.6.10'
compose_version = '1.2.0-alpha02'
core_ktx_version = '1.7.0'
material_version = '1.4.0'
activity_compose_version = '1.4.0'
gradle_plugin_version = '8.0.0'
mockito_version = '4.1.0'
junit_version = '4.13.2'
accompanist_version = '0.20.3'
exoplayer_version = '2.16.1'
coil_version = '1.4.0'
navigation_version = '2.4.0-rc01'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_plugin_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}