blob: 13825b46f29f4d2cd3d3b48102cf375c184bf8ec [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 {
15 target "android-17"
16
17 defaultConfig {
18 renderscriptTargetApi = 11
19 }
20}