blob: e88a6c547933ee967cebb37938198b6d15f91d6a [file] [log] [blame]
Jeff Davidson8165fc42014-12-08 14:16:59 -08001// 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
Ficus Kirkpatrick4e820152014-02-08 13:31:24 -08009buildscript {
10 repositories {
11 mavenCentral()
12 }
13 dependencies {
Jeff Davidsonb433afb2014-11-23 12:13:39 -080014 classpath 'com.android.tools.build:gradle:0.14.+'
Ficus Kirkpatrick4e820152014-02-08 13:31:24 -080015 }
16}
17
Jeff Davidsonb433afb2014-11-23 12:13:39 -080018apply plugin: 'com.android.library'
Jeff Davidson76869372014-06-09 10:13:43 -070019
20android {
21 compileSdkVersion 19
Ficus Kirkpatrickb9b8dc32014-11-29 09:32:54 -080022 buildToolsVersion = '21.1.0'
Jeff Davidson76869372014-06-09 10:13:43 -070023}
24
Jeff Davidson8165fc42014-12-08 14:16:59 -080025apply from: 'rules.gradle'