-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
45 lines (40 loc) · 1.4 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
35
36
37
38
39
40
41
42
43
44
45
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.testdroid:gradle:2.63.1")
classpath("com.android.tools.build:gradle:8.7.1")
classpath("com.neenbedankt.gradle.plugins:android-apt:1.8")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.10")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.8.1")
classpath("gradle.plugin.com.browserstack.gradle:browserstack-gradle-plugin:2.3.1")
}
}
plugins {
id("com.google.devtools.ksp") version "2.0.10-1.0.24" apply false
id("org.jetbrains.kotlin.android") version "2.0.10" apply false
kotlin("plugin.serialization") version "1.8.10" apply false
}
allprojects {
repositories {
google()
mavenCentral()
maven {
url = uri("https://raw.githubusercontent.com/guardianproject/gpmaven/master")
}
maven {
url = uri("https://jitpack.io")
content {
includeModule("com.github.esafirm", "android-image-picker")
includeModule("com.github.derlio", "audio-waveform")
includeModule("com.github.abdularis", "circularimageview")
includeModule("com.github.guardianproject", "sardine-android")
}
}
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.layout.buildDirectory)
}