This repository was archived by the owner on May 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
60 lines (55 loc) · 1.77 KB
/
build.gradle
File metadata and controls
60 lines (55 loc) · 1.77 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
49
50
51
52
53
54
55
56
57
58
59
60
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// Define versions in a single place
ext {
// Sdk and tools
compileSdkVersion = 33
minSdkVersion = 19
targetSdkVersion = 33
// App dependencies
appIntroVersion = '6.2.0'
circleImageViewVersion = '3.1.0'
constraintLayoutVersion = '2.2.0-alpha09'
coroutinesVersion = '1.7.0'
espressoVersion = '3.5.1'
glideVersion = '4.15.1'
gradleVersion = '7.4.1'
grgitVersion = '3.1.1'
gsonVersion = '2.10.1'
junitVersion = '4.13.2'
kotlinVersion = '1.8.0'
ktlintVersion = '0.30.0'
ktxVersion = '1.10.0'
lifecycleVersion = '2.6.1'
materialVersion = '1.9.0'
multiDexLibraryVersion = '2.0.1'
navigationVersion = '2.5.3'
ossLicensesLibrary = '17.0.1'
ossLicensesPlugin = '0.10.4'
recyclerViewVersion = '1.3.0'
roomVersion = '2.5.1'
supportLibraryVersion = '1.6.1'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:8.0.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
classpath "com.google.android.gms:oss-licenses-plugin:$ossLicensesPlugin"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}