-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
44 lines (40 loc) · 1.36 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
44
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.9.0'
ext.nav_version = '2.7.7'
ext.multidex_version = '2.0.1'
ext.appcompat_version = '1.7.0'
ext.core_version = '1.13.1'
ext.constraint_layout_version = '2.1.4'
ext.material_version = '1.12.0'
ext.sdkVersion = '8.0.0'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
google()
mavenCentral()
// TODO 1: Set your own credentials to access ARIADNEXT external repository in order to access SDK library download
maven {
credentials {
username = "<YOUR USERNAME>"
password = "<YOUR PASSWORD>"
}
url "https://repoman.rennes.ariadnext.com/content/repositories/com.ariadnext.idcheckio/"
}
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}