summaryrefslogtreecommitdiff
path: root/build-system/tests/extractAnnotations/build.gradle
blob: 5fb71da202fb845b1dc3e839aa23023d8b6df655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
buildscript {
    repositories {
        maven { url '../../../../../out/repo' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.11.2'
    }
}

apply plugin: 'android-library'

repositories {
    mavenCentral()
}

dependencies {
    compile 'com.android.support:support-annotations:+'
    compile 'com.android.support:support-v4:+'
}

android {
    compileSdkVersion 19
    buildToolsVersion '19.1.0'
}

defaultTasks 'extractDebugAnnotations'