forked from derekcsm/hubble_gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (46 loc) · 1.41 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
46
47
48
49
50
51
52
53
54
55
buildscript {
ext.play_services_version = '8.4.0'
ext.android_support_version = '23.3.0'
ext.multidex_version = '1.0.1'
ext.kotlin_version = '1.0.1-1'
ext.lombok_version = '1.16.8'
ext.jsr250_version = '1.0'
ext.javaxannotations_version = '10.0-b28'
ext.jsoup_version = '1.8.3'
ext.expandablerecycler_version = '2.1.1'
ext.observablescrollview_version = '1.5.0'
ext.daimajiaeasing_version = '1.0.1@aar'
ext.androidanimations_version = '1.1.3@aar'
ext.supertoasts_version = '1.3.4@aar'
ext.verticalviewpager_version = '19.0.1'
ext.androidsvg_version = '1.2.2-beta-1'
ext.materialdialogs_version = '0.8.5.8@aar'
ext.dagger_version = '2.0.1'
ext.picasso_version = '2.5.0'
ext.gson_version = '2.4'
ext.butterknife_version = '7.0.1'
ext.kotterknife_version = '0.1.0-SNAPSHOT'
ext.nineoldandroids_version = '2.4.0'
ext.crashlytics_version = '2.5.2@aar'
repositories {
jcenter()
mavenCentral()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0'
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}