blob: 55b2528cdf8c3981842c9dadfe0ad18ccb9d0960 [file] [log] [blame]
Xavier Ducrohet997a04c2012-12-11 14:49:10 -08001buildscript {
2 repositories {
Xavier Ducrohet4b622302013-04-29 17:52:12 -07003 maven { url '../../../../out/host/gradle/repo' }
Xavier Ducrohet997a04c2012-12-11 14:49:10 -08004 }
5 dependencies {
Xavier Ducrohet1918f7b2013-02-26 11:57:02 -08006 classpath 'com.android.tools.build:gradle:0.4-SNAPSHOT'
Xavier Ducrohet997a04c2012-12-11 14:49:10 -08007 }
8}
9apply plugin: 'android'
10
11android {
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080012 compileSdkVersion 15
Xavier Ducrohet92485732013-03-25 17:03:31 -070013 buildToolsVersion "17.0"
Xavier Ducrohet997a04c2012-12-11 14:49:10 -080014
15 sourceSets {
16 main {
17 res {
18 srcDirs 'src/main/res1', 'src/main/res2'
19 }
20 }
21 }
22}