forked from kael-moreno/compose-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
32 lines (27 loc) · 989 Bytes
/
build.gradle.kts
File metadata and controls
32 lines (27 loc) · 989 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
val kotlinVersion by extra("2.2.0")
val gradleVersion by extra("8.10.1")
repositories {
google()
maven(url = "https://plugins.gradle.org/m2/")
}
dependencies {
classpath("com.android.tools.build:gradle:$gradleVersion")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle.kts files
}
}
plugins {
id("com.google.dagger.hilt.android") version "2.57.1" apply false
id("com.google.devtools.ksp") version "2.2.0-2.0.2" apply false
id("org.jetbrains.kotlin.plugin.compose") version "2.2.0" apply false
}
allprojects {
repositories {
maven(url = "https://maven.google.com")
google()
maven(url = "https://plugins.gradle.org/m2/")
}
}