blob: d5914050f7b60dde56f74481234e309883c755f1 [file] [log] [blame]
Xavier Ducrohet4983ea72013-07-12 10:46:11 -07001buildscript {
2 repositories {
3 maven { url '../../../../out/host/gradle/repo' }
4 }
5 dependencies {
Alex Ruiz3de58562013-09-06 18:45:12 +00006 classpath 'com.android.tools.build:gradle:0.5.0-SNAPSHOT'
Xavier Ducrohet4983ea72013-07-12 10:46:11 -07007 }
8}
9apply plugin: 'android'
10
11repositories {
12 mavenCentral()
13}
14
15dependencies {
16 compile 'org.apache.httpcomponents:httpclient:4.2.5'
17}
18
19android {
20 compileSdkVersion 15
Xavier Ducrohetdfda26d2013-08-01 12:57:48 -070021 buildToolsVersion "18.0.1"
Xavier Ducrohet4983ea72013-07-12 10:46:11 -070022}