-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
64 lines (56 loc) · 1.81 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
58
59
60
61
62
63
64
subprojects { project ->
group = GROUP
version = VERSION_NAME
repositories {
mavenCentral()
}
// apply plugin: 'checkstyle'
//
// task checkstyle(type: Checkstyle) {
// configFile rootProject.file('checkstyle.xml')
// source 'src/main/java'
// ignoreFailures false
// showViolations true
// include '**/*.java'
//
// classpath = files()
// }
// afterEvaluate {
// if (project.tasks.findByName('check')) {
// check.dependsOn('checkstyle')
// }
// }
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}
}
ext {
minSdkVersion = 8
targetSdkVersion = 23
compileSdkVersion = 23
buildToolsVersion = '23.0.3'
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
targetCompatibilityVersion = JavaVersion.VERSION_1_7
}
ext.deps = [
// Android
android : 'com.google.android:android:2.1.2',
supportv4 : 'com.android.support:support-v4:23.3.0',
supportAnnotations: 'com.android.support:support-annotations:23.3.0',
appcompat : "com.android.support:appcompat-v7:23.1.1",
// Square
javapoet : 'com.squareup:javapoet:1.7.0',
// Test dependencies
junit : 'junit:junit:4.12',
truth : 'com.google.truth:truth:0.28',
robolectric : 'org.robolectric:robolectric:2.2',
compiletesting : 'com.google.testing.compile:compile-testing:0.9',
autoservice : 'com.google.auto.service:auto-service:1.0-rc2',
autocommon : 'com.google.auto:auto-common:0.6'
]