-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.gradle
More file actions
26 lines (22 loc) · 806 Bytes
/
Copy pathconfig.gradle
File metadata and controls
26 lines (22 loc) · 806 Bytes
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
ext {
android = [
compileSdkVersion: 26,
minSdkVersion : 19,
targetSdkVersion : 26,
versionCode : 2,
versionName : "1.0.9"
]
depsVersion = [
support : '26.1.0',
constraint: '1.1.3',
design : '26.1.0'
]
deps = [
supportV7 : "com.android.support:appcompat-v7:${depsVersion.support}",
constraint: "com.android.support.constraint:constraint-layout:${depsVersion.constraint}",
design : "com.android.support:design:${depsVersion.design}",
junit : "junit:junit:4.12",
runner : "com.android.support.test:runner:1.0.2",
espresso : "com.android.support.test.espresso:espresso-core:3.0.2"
]
}