build.gradle revision 40d00117dbb2a0d87d390ee8efbe72b2c065e8f2
1// NOTE: The only changes that belong in this file are the definitions
2// of tool versions (gradle plugin, compile SDK, build tools), so that
3// Volley can be built via gradle as a standalone project.
4//
5// Any other changes to the build config belong in rules.gradle, which
6// is used by projects that depend on Volley but define their own
7// tools versions across all dependencies to ensure a consistent build.
8
9buildscript {
10    repositories {
11        mavenCentral()
12    }
13    dependencies {
14        classpath 'com.android.tools.build:gradle:0.14.+'
15    }
16}
17
18apply plugin: 'com.android.library'
19
20android {
21    compileSdkVersion 19
22    buildToolsVersion = '21.1.0'
23}
24
25apply from: 'rules.gradle'
26