forked from Evernote/android-job
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (33 loc) · 1.34 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
apply plugin: 'com.android.library'
apply from: '../build-config/gradle-quality.gradle'
dependencies {
provided 'com.google.android.gms:play-services-gcm:8.1.0'
compile 'com.android.support:support-v4:23.1.0'
compile 'net.vrallev.android:cat:1.0.2'
androidTestCompile 'com.android.support.test:runner:0.3'
androidTestCompile 'com.android.support.test:rules:0.3'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'
androidTestCompile 'com.squareup.assertj:assertj-android:1.1.0'
}
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
resourcePrefix 'job_'
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionName project.VERSION_NAME
versionCode Integer.parseInt(project.VERSION_CODE)
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
lintOptions {
abortOnError true
htmlOutput file("$project.buildDir/reports/lint/lint.html")
xmlOutput file("$project.buildDir/reports/lint/lint.xml")
}
}
apply from: '../build-config/gradle-push.gradle'