-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (37 loc) · 1.1 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
apply from: './gradle-version/version.gradle'
ext {
version_base_style = '0.0.1-alpha02'
version_fast4android_arch = '0.0.1-alpha02'
version_fast4android_bottomnavlayout = "0.0.1-alpha02"
version_fast4android_countdown = '0.0.1-alpha02'
version_fast4android_compat = '0.0.1-alpha02'
version_fast4android_tabsegment = '0.0.1-alpha04'
version_fast4android_grouplistview = '0.0.1-alpha02'
version_fast4android_popwindowplus = '0.0.1-alpha02'
version_fast4android_loopviewpager = '0.0.1-alpha03'
version_fast4android_topbarlayout = '0.0.1-alpha02'
version_group = 'io.github.keep2iron'
}
dependencies {
classpath deps.android_gradle_plugin
classpath deps.kotlin_gradle_plugin
classpath 'com.novoda:bintray-release:0.9.2'
}
repositories {
jcenter()
google()
}
}
allprojects {
repositories {
maven {
url "$rootDir/../maven-local"
}
}
addRepos(repositories)
}
task clean(type: Delete) {
delete rootProject.buildDir
}