/* * * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. * */ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { apply from: 'dependencies.gradle' repositories { google() jcenter() } dependencies { classpath config.gradlePlugin // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files classpath config.kotlinGradlePlugin } } allprojects { repositories { google() jcenter() maven { url config.duoSdkUrl } } } task clean(type: Delete) { delete rootProject.buildDir }