build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Copyright (C) 2018 Drake, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  17. buildscript {
  18. ext {
  19. kotlin_version = '1.4.32'
  20. brv_version = '1.3.19'
  21. coroutine_version = '1.4.3'
  22. glide_version = '4.11.0'
  23. room_version = "2.2.6"
  24. }
  25. repositories {
  26. mavenCentral()
  27. google()
  28. jcenter()
  29. }
  30. dependencies {
  31. classpath 'com.android.tools.build:gradle:4.1.3'
  32. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  33. classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
  34. classpath 'org.jetbrains.dokka:dokka-gradle-plugin:0.10.1'
  35. }
  36. }
  37. allprojects {
  38. repositories {
  39. mavenCentral()
  40. google()
  41. maven { url 'https://jitpack.io' }
  42. jcenter()
  43. }
  44. }
  45. task clean(type: Delete) {
  46. delete rootProject.buildDir
  47. }