-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·34 lines (32 loc) · 789 Bytes
/
build.gradle
File metadata and controls
executable file
·34 lines (32 loc) · 789 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
32
33
34
buildscript {
ext {
compileSdkVersion = 30
buildToolsVersion = '30.0.3'
minSdkVersion = 21
targetSdkVersion = 30
kotlinVersion = '1.4.32'
compose = '1.0.0-beta06'
hilt_version = '2.35.1'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0-alpha15'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
maven {
url "https://kotlin.bintray.com/kotlinx"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}