forked from 1mlines/android-wanted-SensorDashboardApp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
27 lines (24 loc) · 847 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// App dependencies
hiltVersion = '2.42'
navigationVersion = '2.5.2'
retrofitVersion = '2.9.0'
lifecycleVersion = '2.5.1'
roomVersion = '2.4.3'
glideVersion = '4.13.0'
pagingVersion = "3.1.1"
timberVersion = '5.0.1'
chartVersion = "3.1.0"
}
dependencies {
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
}
}
plugins {
id 'com.android.application' version '7.2.2' apply false
id 'com.android.library' version '7.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}