-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
53 lines (43 loc) · 1.5 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
subprojects {
buildscript {
repositories {
jcenter()
mavenCentral()
}
}
repositories {
mavenCentral()
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
androidPlugin = 'com.android.tools.build:gradle:1.3.1'
minSdkVersion = 14
compileSdkVersion = 23
buildToolsVersion = '23.0.1'
kotlinVersion = '1.0.5-3'
kotlinPlugin = 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.0-beta-2422'
kotlinStdlib = 'org.jetbrains.kotlin:kotlin-stdlib:1.0.0-beta-2422'
supportAnnotations = 'com.android.support:support-annotations:23.0.1'
supportV4 = 'com.android.support:support-v4:23.0.1'
supportAppCompat = 'com.android.support:appcompat-v7:23.0.1'
supportTestRunner = 'com.android.support.test:runner:0.4'
supportTestRules = 'com.android.support.test:rules:0.4'
supportTestEspresso = 'com.android.support.test.espresso:espresso-core:2.2.1'
supportTestEspressoContrib = 'com.android.support.test.espresso:espresso-contrib:2.2.1'
junit = 'junit:junit:4.12'
truth = 'com.google.truth:truth:0.27'
rxJava = 'io.reactivex:rxjava:1.2.5'
rxAndroid = 'io.reactivex:rxandroid:1.2.1'
bintrayRelease = 'com.novoda:bintray-release:0.3.4'
siteUrl = 'https://github.com/Reyurnible/RxAnimation'
gitUrl = 'https://github.com/Reyurnible/RxAnimation.git'
issueTrackingUrl = 'https://github.com/Reyurnible/RxAnimation/issues'
}