Home | History | Annotate | Download | only in volley
      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 
      9 buildscript {
     10     repositories {
     11         mavenCentral()
     12     }
     13     dependencies {
     14         classpath 'com.android.tools.build:gradle:0.14.+'
     15     }
     16 }
     17 
     18 apply plugin: 'com.android.library'
     19 
     20 android {
     21     compileSdkVersion 19
     22     buildToolsVersion = '21.1.0'
     23 }
     24 
     25 apply from: 'rules.gradle'
     26