/* * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. */ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() jcenter() } dependencies { classpath("com.android.tools.build:gradle:3.5.0") classpath(kotlin("gradle-plugin", property("kotlin_version") as String)) // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { google() jcenter() } } task("clean") { delete(rootProject.buildDir) }