-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle.kts
34 lines (33 loc) · 1.03 KB
/
build.gradle.kts
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
@file:Suppress("UNUSED_VARIABLE")
plugins {
alias(libs.plugins.ksp) apply false
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
maven("https://maven.fabric.io/public")
maven("https://maven.google.com")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
maven ("https://storage.googleapis.com/r8-releases/raw")
}
dependencies {
classpath(libs.gradle)
classpath(libs.r8)
//noinspection DifferentKotlinGradleVersion
classpath(kotlin("gradle-plugin", version = "2.1.0-RC2"))
classpath(libs.kotlin.gradle.plugin)
}
}
allprojects {
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
maven("https://maven.fabric.io/public")
maven("https://maven.google.com")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
}
}