-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·40 lines (32 loc) · 892 Bytes
/
build.gradle
File metadata and controls
executable file
·40 lines (32 loc) · 892 Bytes
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext{
kotlin_vers = '1.8.0'
appcompat_vers = '1.6.1'
constraintlayout_vers = '2.1.4'
play_services_ads_vers = '22.4.0'
consent_library_vers = '1.0.8'
lifecycle_vers = '2.6.2'
lifecycle_ext_vers = '2.2.0'
room_vers = '2.5.2'
}
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_vers"
}
}
allprojects {
repositories {
google()
maven{url 'https://jitpack.io'}
jcenter()
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}