forked from Tapadoo/Alerter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dependencies.gradle
34 lines (28 loc) · 1.43 KB
/
dependencies.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
ext {
compileSdkVersion = 25
minSdkVersion = 16
targetSdkVersion = 25
buildToolsVersion = '25.0.2'
sourceCompatibilityVersion = JavaVersion.VERSION_1_8
targetCompatibilityVersion = JavaVersion.VERSION_1_8
supportLibVersion = '25.1.1'
retrofitVersion = "2.1.0"
kotlin_version = "1.0.5-3"
libs = [
android_gradle : 'com.android.tools.build:gradle:2.2.3',
/* Application Dependencies */
support_design : "com.android.support:design:$supportLibVersion",
support_v4 : "com.android.support:support-v4:$supportLibVersion",
appcompat_v7 : "com.android.support:appcompat-v7:$supportLibVersion",
support_annotations : "com.android.support:support-annotations:$supportLibVersion",
/* Test Dependencies */
junit : 'junit:junit:4.12',
assertj : 'com.squareup.assertj:assertj-android:1.1.1',
mockito : 'org.mockito:mockito-core:2.1.0',
runner : 'com.android.support.test:runner:0.5',
rules : 'com.android.support.test:rules:0.5',
hamcrest : 'org.hamcrest:hamcrest-library:1.3',
espresso : 'com.android.support.test.espresso:espresso-core:2.2.2',
uiautomator : 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
]
}