blob: d947c9416d8b4745a799da331be47ff88fe4fc08 [file] [log] [blame]
Xavier Ducrohet11086782013-01-25 15:59:06 -08001//
2// A basic Android application that follows all the conventions
3//
4buildscript {
5 repositories {
6 maven { url '../../repo' }
7 }
8 dependencies {
9 classpath 'com.android.tools.build:gradle:0.3-SNAPSHOT'
10 }
11}
12apply plugin: 'android'
13
14android {
Xavier Ducrohetcd66cd32013-01-30 13:24:03 -080015 compileSdkVersion 17
Xavier Ducrohet11086782013-01-25 15:59:06 -080016
17 defaultConfig {
18 renderscriptTargetApi = 11
19 }
20}