-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathconfig.gradle
33 lines (27 loc) · 1.22 KB
/
config.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
ext {
plugins = [
library: 'com.android.library',
android: 'com.android.application',
]
android = [
applicationId : "tech.nicesky.bezierseekbardemo",
compileSdkVersion : 28,
buildToolsVersion : "28.0.2",
librayMinSdkVersion: 19,
sampleMinSdkVersion: 19,
targetSdkVersion : 28,
versionCode : 1,
versionName : "1.0.0",
default_dependcy_version : "28.0.0-rc02",
testRunner : "android.support.test.runner.AndroidJUnitRunner"
]
dependencies = [
junit : 'junit:junit:4.12',
expressoCore : 'com.android.support.test.espresso:espresso-core:3.0.2',
appCompat : "com.android.support:appcompat-v7:${android["default_dependcy_version"]}",
design : "com.android.support:design:${android["default_dependcy_version"]}",
leakcanary : "com.squareup.leakcanary:leakcanary-android-no-op:1.6.1",
// Optional, if you use support library fragments:
leakcanaryFragment : "com.squareup.leakcanary:leakcanary-support-fragment:1.6.1"
]
}