-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
executable file
·47 lines (41 loc) · 1.25 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
executable file
·47 lines (41 loc) · 1.25 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.compose) apply false
alias(libs.plugins.ksp) apply false
alias(libs.plugins.hilt.android) apply false
}
/*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 {
mavenCentral()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_vers"
}
}
allprojects {
repositories {
mavenCentral()
google()
jcenter()
maven{url 'https://jitpack.io'}
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}*/