-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (39 loc) · 1.25 KB
/
Copy pathbuild.gradle
File metadata and controls
44 lines (39 loc) · 1.25 KB
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
buildscript {
repositories {
jcenter()
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.novoda:bintray-release:0.3.4'
}
}
allprojects {
repositories {
jcenter()
}
}
ext {
version = "0.1.0"
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
targetCompatibilityVersion = JavaVersion.VERSION_1_7
compileSdkVersion = 24
buildToolsVersion = '24.0.2'
minSdkVersion = 9
supportVersion = '24.2.1'
deps = [
// Common
android : 'com.google.android:android:4.1.1.4',
checker : 'org.checkerframework:checker-qual:2.1.4',
javapoet : 'com.squareup:javapoet:1.7.0',
autocommon : 'com.google.auto:auto-common:0.6',
appcompat : "com.android.support:appcompat-v7:$supportVersion",
supportannotations: "com.android.support:support-annotations:$supportVersion",
// Test
junit : 'junit:junit:4.12',
truth : 'com.google.truth:truth:0.28',
compiletesting : 'com.google.testing.compile:compile-testing:0.9',
robolectric : 'org.robolectric:robolectric:3.1.2',
mockito : 'org.mockito:mockito-core:1.+'
]
}