OSDN Git Service

Update Gradle version
[android-x86/packages-apps-Taskbar.git] / build.gradle
1 // Top-level build file where you can add configuration options common to all sub-projects/modules.
2
3 buildscript {
4     repositories {
5         jcenter()
6
7         maven {
8             url "https://jitpack.io"
9         }
10     }
11
12     dependencies {
13         classpath 'com.android.tools.build:gradle:2.2.0'
14         classpath 'com.github.JakeWharton:sdk-manager-plugin:-SNAPSHOT'
15
16         // NOTE: Do not place your application dependencies here; they belong
17         // in the individual module build.gradle files
18     }
19 }
20
21 allprojects {
22     repositories {
23         jcenter()
24     }
25 }
26
27 task clean(type: Delete) {
28     delete rootProject.buildDir
29 }