blob: ce3dfd863dcdb1d4c9a5af6e611f896b5c7cd88a [file] [log] [blame]
Xavier Ducrohet997a04c2012-12-11 14:49:10 -08001buildscript {
2 repositories {
3 maven { url '../../repo' }
Xavier Ducroheta9e5c0a2013-03-19 14:31:03 -07004 maven { url '../../../../prebuilts/tools/common/m2/repository' }
Xavier Ducrohetd5fd39b2013-03-21 09:27:57 -07005 maven { url '../../../../prebuilts/tools/common/m2/internal' }
Xavier Ducrohet997a04c2012-12-11 14:49:10 -08006 }
7 dependencies {
Xavier Ducrohet1918f7b2013-02-26 11:57:02 -08008 classpath 'com.android.tools.build:gradle:0.4-SNAPSHOT'
Xavier Ducrohet997a04c2012-12-11 14:49:10 -08009 }
10}
11apply plugin: 'android'
12
13android {
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080014 compileSdkVersion 15
Xavier Ducrohet92485732013-03-25 17:03:31 -070015 buildToolsVersion "17.0"
Xavier Ducrohet997a04c2012-12-11 14:49:10 -080016
17 sourceSets {
18 main {
19 res {
20 srcDirs 'src/main/res1', 'src/main/res2'
21 }
22 }
23 }
24}