UserLAnd/build.gradle
Matthew Tighe 64f3b79b76
Refactor utils package. (#934)
* Refactor preference classes into new package.

* Move DownloadManagerWrapper to DownloadUtility. Move top-level functions.

* Update tests.

* Rename DownloadUtility to AssetDownloader.

* Rename FilesystemUtility to FilesystemManager.

* Rename NotificationUtility to NotificationConstructor

* Rename ServerUtility to LocalServerManager

* Rename ValidationUtility to CredentialValidator

* Move top-level function to extension. Separate Localization.

* Rename LocalFileLocator to AppDetails

* Refactor the rest of AndroidUtility.

* Rename test files.

* Bump version.
2019-07-12 11:02:21 -07:00

35 lines
868 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
ext {
kotlin_version = '1.3.41'
android_plugin = '3.4.2'
jacoco_version = '0.8.4'
navigation_version = '2.1.0-alpha05'
}
dependencies {
classpath "com.android.tools.build:gradle:$android_plugin"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
classpath "org.jacoco:org.jacoco.core:$jacoco_version"
classpath 'de.undercouch:gradle-download-task:3.4.3'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}