-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (40 loc) · 1.45 KB
/
build.gradle
File metadata and controls
47 lines (40 loc) · 1.45 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
45
46
47
apply plugin: 'com.android.application'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
applicationId "org.project_osrm.instructions.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "0.1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
// Support libraries
implementation rootProject.ext.dep.supportAppcompatV7
implementation rootProject.ext.dep.supportConstraintLayout
// Logging
implementation rootProject.ext.dep.timber
// Leak Canary
debugImplementation rootProject.ext.dep.leakCanaryDebug
releaseImplementation rootProject.ext.dep.leakCanaryRelease
testImplementation rootProject.ext.dep.leakCanaryTest
// Unit Testing
testImplementation rootProject.ext.dep.junit
testImplementation rootProject.ext.dep.mockito
implementation 'androidx.vectordrawable:vectordrawable:1.2.0-alpha01'
implementation 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
// Instrumentation testing
androidTestCompile(rootProject.ext.dep.testEspressoCore, {
exclude group: 'com.android.support', module: 'support-annotations'
})
}
apply from: '../checkstyle.gradle'