blob: 19a298f6833b26d082a534ac19ecf86ac12839c2 [file] [log] [blame]
Xavier Ducrohetafd09722012-09-21 14:46:03 -07001buildscript {
2 repositories {
3 maven { url '../../../repo' }
4 }
5 dependencies {
Xavier Ducrohet0b870a32012-10-01 12:30:19 -07006 classpath 'com.android.tools.build:gradle:0.2-SNAPSHOT'
Xavier Ducrohetafd09722012-09-21 14:46:03 -07007 }
8}
9apply plugin: 'android'
10apply plugin: 'maven'
11
12repositories {
Xavier Ducrohetdc71ab22012-10-05 10:56:03 -070013 mavenLocal()
Xavier Ducrohetafd09722012-09-21 14:46:03 -070014 mavenCentral()
15}
16
17dependencies {
18 compile 'com.example.android.multiproject:lib:1.0'
19}
20
21android {
22 target 'android-15'
23}
Xavier Ducrohetdc71ab22012-10-05 10:56:03 -070024