/* * Copyright (C) 2018 Drake, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext { kotlin_version = '1.5.21' brv_version = '1.3.62' coroutine_version = '1.5.1' glide_version = '4.11.0' room_version = "2.3.0" okhttp_version = "4.9.1" } repositories { mavenCentral() google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:4.2.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version" classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.4.32' } } allprojects { repositories { mavenCentral() google() maven { url 'https://jitpack.io' } jcenter() } } task clean(type: Delete) { delete rootProject.buildDir }