forked from CookieJarApps/SmartCookieWeb-Preview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (37 loc) · 1.11 KB
/
build.gradle
File metadata and controls
45 lines (37 loc) · 1.11 KB
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 {
ext.kotlin_version = '2.1.20'
repositories {
maven {
name "Mozilla"
url "https://maven.mozilla.org/maven2"
}
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.10.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.9.0"
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 "2.1.20-1.0.31" apply false
id 'org.jetbrains.kotlin.plugin.compose' version '2.1.0' 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.buildDir
}