You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
buildscript {
|
|
|
|
ext {
|
|
appcompatVersion = "1.5.1"
|
|
lifecycleVersion = "2.2.0"
|
|
navVersion = '2.5.3'
|
|
pagingVersion = "2.1.2"
|
|
recyclerViewVersion = "1.2.1"
|
|
swipeRefreshLayoutVersion = "1.1.0"
|
|
roomVersion = "2.4.3"
|
|
workVersion = "2.7.1"
|
|
exifInterfaceVersion = "1.3.5"
|
|
muaVersion = "0.8.13"
|
|
autocryptJmapVersion = "0.4.1"
|
|
espressoVersion = "3.4.0"
|
|
material = "1.7.0"
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools:r8:3.3.75'
|
|
classpath 'com.android.tools.build:gradle:7.3.1'
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navVersion"
|
|
classpath "com.diffplug.spotless:spotless-plugin-gradle:6.8.0"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
|
|
configurations.all {
|
|
resolutionStrategy.cacheChangingModulesFor 30, 'seconds'
|
|
}
|
|
|