-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (28 loc) · 963 Bytes
/
build.gradle
File metadata and controls
30 lines (28 loc) · 963 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
buildscript {
ext {
splash_screen_version = "1.0.0"
nav_version = "2.5.3"
circular_iv_version = "3.1.0"
power_spinner_version = "1.2.4"
image_picker_version = "2.1"
lifecycle_version = "2.5.1"
viewmodel_version = "2.5.1"
lottie_version = "3.4.0"
smooth_bottom_bar_version = "1.7.9"
coil_version = "2.2.2"
viewpager_version = "1.0.0"
}
dependencies {
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath 'com.google.gms:google-services:4.3.14'
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.4.0' apply false
id 'com.android.library' version '7.4.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}