forked from CookieJarApps/SmartCookieWeb-Preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (36 loc) · 1.05 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
34
35
36
37
38
39
40
41
42
43
buildscript {
ext.kotlin_version = '1.9.24'
repositories {
maven {
name "Mozilla"
url "https://maven.mozilla.org/maven2"
}
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.8.4"
classpath "org.mozilla.components:tooling-glean-gradle:95.0.5"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id("com.google.devtools.ksp") version "1.9.25-1.0.20" apply false
}
allprojects {
repositories {
google()
maven {
name "Mozilla"
url "https://maven.mozilla.org/maven2"
}
mavenCentral()
maven { url "https://jitpack.io" }
}
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory.asFile
}