-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject level build.gradle
More file actions
48 lines (44 loc) · 1.6 KB
/
Project level build.gradle
File metadata and controls
48 lines (44 loc) · 1.6 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
46
47
48
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.9.10'
gradle_version = '8.2.0'
core_ktx_version = '1.12.0'
appcompat_version = '1.6.1'
material_version = '1.9.0'
constraint_layout_version = '2.1.4'
lifecycle_version = '2.6.2'
navigation_version = '2.7.1'
room_version = '2.5.2'
biometric_version = '1.1.0'
preference_version = '1.2.0'
pdf_viewer_version = '3.2.0-beta.1'
pdfbox_version = '2.0.27.0'
ads_version = '22.4.0'
work_version = '2.8.1'
glide_version = '4.15.1'
gson_version = '2.10.1'
coroutines_version = '1.7.3'
}
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.gms:google-services:4.3.15"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
}
}
plugins {
id 'com.android.application' version '8.2.0' apply false
id 'com.android.library' version '8.1.2' apply false
id 'org.jetbrains.kotlin.android' version '1.9.10' apply false
id 'com.google.gms.google-services' version '4.3.15' apply false
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' version '2.0.1' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}