-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
31 lines (30 loc) · 1.12 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 {
/**
* Downgraded to stable pagers and compose combination
* as per https://issuetracker.google.com/issues/229752147
*
* Once new stable versions are available, update and do general testing
*/
// compose_version = '1.2.0-alpha08'
// kotlin_gradle_version = '1.6.20'
// accompanist_version = '0.24.7-alpha'
compose_version = '1.1.1'
kotlin_gradle_version = '1.6.10'
hilt_version = '2.38.1'
retrofit_version = '2.9.0'
accompanist_version = '0.24.6-alpha'
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_gradle_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.1.2' apply false
id 'com.android.library' version '7.1.2' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}