build.gradle 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.6.21'
  20. brv_version = '1.3.79'
  21. coroutine_version = '1.6.0'
  22. glide_version = '4.11.0'
  23. room_version = "2.3.0"
  24. okhttp_version = "4.10.0"
  25. }
  26. repositories {
  27. mavenCentral()
  28. google()
  29. jcenter()
  30. }
  31. dependencies {
  32. classpath 'com.android.tools.build:gradle:7.1.3'
  33. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  34. classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
  35. classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.4.32'
  36. }
  37. }
  38. allprojects {
  39. repositories {
  40. mavenCentral()
  41. google()
  42. maven { url 'https://jitpack.io' }
  43. jcenter()
  44. }
  45. }
  46. task clean(type: Delete) {
  47. delete rootProject.buildDir
  48. }