-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
59 lines (51 loc) · 2.5 KB
/
build.gradle
File metadata and controls
59 lines (51 loc) · 2.5 KB
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
56
57
58
59
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.1.51'
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext.deps = [
appcompat : 'com.android.support:appcompat-v7:27.1.1',
design : 'com.android.support:design:27.1.1',
support13 : 'com.android.support:support-v13:27.1.1',
junit : 'junit:junit:4.12',
testRunner : 'com.android.support.test:runner:1.0.1',
testEspresso : 'com.android.support.test.espresso:espresso-core:3.0.1',
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version",
multidex : 'com.android.support:multidex:1.0.1',
http : 'com.github.amitsahni:http:1.0.4',
activityFragment : 'com.github.amitsahni:manager:1.0.4.6-test',
snackbar : 'com.github.amitsahni.alert:snackbar:1.0.2',
dialog : 'com.github.amitsahni.alert:dialog:1.0.2',
pref : 'com.github.amitsahni.alert:pref:1.0.2',
archLifecycleExtension: 'android.arch.lifecycle:extensions:1.1.0',
chromeTab : 'com.android.support:customtabs:27.1.1',
support : 'com.android.support:support-v4:27.0.2',
image : 'com.github.amitsahni:image:1.0.1',
baseUI : 'com.github.amitsahni.sparta:base:1.0.2',// UI
baseAdapter : 'com.github.amitsahni.sparta:adapter:1.0.2', // Adapter
commonUtil : 'com.github.amitsahni:commonUtil:1.0.1.1-alpha',
cardView : 'com.android.support:cardview-v7:27.1.1',
constraintLayout : 'com.android.support.constraint:constraint-layout:1.1.2',
countryCodes : 'com.github.amitsahni:countrycode:0.0.1-alpha',
spinKit : 'com.github.ybq:Android-SpinKit:1.1.0'
]