2014-10-22 16:38:44 +00:00
|
|
|
buildscript {
|
2023-02-15 20:04:54 +00:00
|
|
|
ext {
|
|
|
|
appcompatVersion = "1.6.1"
|
2023-02-17 13:14:31 +00:00
|
|
|
material = "1.8.0"
|
2023-02-15 20:04:54 +00:00
|
|
|
lifecycleVersion = "2.2.0"
|
2023-02-17 13:14:31 +00:00
|
|
|
navVersion = '2.5.3'
|
|
|
|
roomVersion = "2.5.0"
|
2023-02-20 09:09:20 +00:00
|
|
|
preferenceVersion = "1.2.0"
|
2023-02-17 13:14:31 +00:00
|
|
|
espressoVersion = "3.5.1"
|
2023-03-06 17:55:02 +00:00
|
|
|
pagingVersion = "3.1.1"
|
2023-02-15 20:04:54 +00:00
|
|
|
}
|
|
|
|
|
2016-08-25 20:53:27 +00:00
|
|
|
repositories {
|
2017-12-09 15:19:56 +00:00
|
|
|
google()
|
2021-05-13 09:05:26 +00:00
|
|
|
mavenCentral()
|
2016-08-25 20:53:27 +00:00
|
|
|
}
|
2023-02-17 13:14:31 +00:00
|
|
|
|
|
|
|
|
2016-08-25 20:53:27 +00:00
|
|
|
dependencies {
|
2023-03-05 07:38:49 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.4.2'
|
2023-02-15 20:04:54 +00:00
|
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navVersion"
|
2023-03-05 14:23:46 +00:00
|
|
|
classpath "com.diffplug.spotless:spotless-plugin-gradle:6.16.0"
|
2016-08-25 20:53:27 +00:00
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
2023-02-17 13:14:31 +00:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
2020-04-19 18:21:31 +00:00
|
|
|
}
|
2023-02-17 13:14:31 +00:00
|
|
|
}
|