plectrum

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 0083e06575a369f670dffbac4de7d0f09cb05e6c
parent 29332afa396ae3bc077e8801a7496cd22e1b965b
Author: gstraube <gstraube@mailbox.org>
Date:   Thu, 18 May 2017 17:18:20 +0200

Add top-level build file

Diffstat:
Abuild.gradle | 23+++++++++++++++++++++++
1 file changed, 23 insertions(+), 0 deletions(-)

diff --git a/build.gradle b/build.gradle @@ -0,0 +1,23 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. + +buildscript { + repositories { + jcenter() + } + dependencies { + classpath 'com.android.tools.build:gradle:2.3.2' + + // NOTE: Do not place your application dependencies here; they belong + // in the individual module build.gradle files + } +} + +allprojects { + repositories { + jcenter() + } +} + +task clean(type: Delete) { + delete rootProject.buildDir +}