-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
57 lines (47 loc) · 1.21 KB
/
build.gradle
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'org.aspectj:aspectjtools:1.8.6'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
}
}
allprojects {
version = VERSION_NAME
group = GROUP
repositories {
mavenCentral()
}
apply plugin: 'maven'
}
ext {
minSdkVersion = 8
targetSdkVersion = 23
compileSdkVersion = 23
buildToolsVersion = '23.0.1'
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
targetCompatibilityVersion = JavaVersion.VERSION_1_7
}
ext.deps = [
aspectjrt: 'org.aspectj:aspectjrt:1.8.8',
aspectjtools: 'org.aspectj:aspectjtools:1.8.8',
junit: 'junit:junit:4.12',
]
task cleanExample(type: Exec) {
executable = '../gradlew'
workingDir = project.file('teaspoon-example')
args = [ 'clean' ]
}
task assembleExample(type: Exec) {
executable = '../gradlew'
workingDir = project.file('teaspoon-example')
args = [ 'assemble' ]
}
task installExample(type: Exec) {
executable = '../gradlew'
workingDir = project.file('teaspoon-example')
args = [ 'installDebug' ]
}