This repository has been archived by the owner on Oct 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
56 lines (52 loc) · 1.57 KB
/
build.gradle
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
buildscript {
ext.fenrirCompileSDK = 31
ext.fenrirBuildTools = '32.0.0'
ext.fenrirNdk = '23.1.7779620'
ext.fenrirMinSDK = 21
ext.fenrirTargetSDK = 31
ext.FenrirVersionCode = 174
ext.FenrirVersionName = '2.74'
ext.kotlin_version = '1.6.10'
ext.kotlin_coroutines = '1.6.0-RC2'
ext.gsonVersion = '2.8.9'
ext.retrofitLibraryVersion = '2.9.0'
ext.okhttpLibraryVersion = '5.0.0-alpha.3'
ext.okioVersion = '3.0.0'
ext.rxJavaVersion = '3.1.3'
ext.rxAndroidVersion = '3.0.0'
ext.guavaVersion = '31.0.1-android'
ext.exoLibraryVersion = '2.16.1'
ext.checkerQualVersion = '3.20.0'
ext.annotationVersion = '1.3.0'
ext.coreVersion = '1.7.0'
ext.appcompatVersion = '1.4.0'
ext.activityVersion = '1.4.0'
ext.fragmentVersion = '1.4.0'
ext.coordinatorlayoutVersion = '1.2.0-rc01'
ext.recyclerviewVersion = '1.2.1'
ext.viewpager2Version = '1.1.0-beta01'
ext.vectordrawableVersion = '1.2.0-alpha02'
ext.exifinterfaceVersion = '1.3.3'
ext.constraintlayoutVersion = '2.1.2'
ext.drawerlayoutVersion = '1.1.1'
ext.collectionVersion = '1.2.0'
ext.lifecycleVersion = '2.4.0'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath 'com.google.gms:google-services:4.3.10'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}