-
-
Notifications
You must be signed in to change notification settings - Fork 642
/
build.gradle
33 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
32
33
buildscript {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
// https://developer.android.com/studio/releases/gradle-plugin
classpath 'com.android.tools.build:gradle:8.7.2'
// https://github.com/bugsnag/bugsnag-android-gradle-plugin
// https://mvnrepository.com/artifact/com.bugsnag/bugsnag-android-gradle-plugin
classpath "com.bugsnag:bugsnag-android-gradle-plugin:8.1.0"
// https://kotlinlang.org/docs/releases.html#release-details
// https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-gradle-plugin
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.24"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:1.9.24"
// https://plugins.gradle.org/plugin/de.undercouch.download
classpath "de.undercouch:gradle-download-task:5.6.0"
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
tasks.register('clean', Delete) {
delete rootProject.getLayout().getBuildDirectory()
}