forked from muratcanbur/ProjectX
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
65 lines (58 loc) · 2.13 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
56
57
58
59
60
61
62
63
64
65
buildscript {
ext.kotlin_version = '1.3.41'
ext {
configuration = [
package : "co.icanteach.projectx",
compileSdkVersion: 29,
minSdkVersion : 19,
targetSdkVersion : 29
]
libraries = [
appcompatVersion : '1.1.0-rc01',
ktxCoreVersion : "1.0.1",
junitVersion : '4.13-beta-3',
androidxTestRunnerVersion: '1.3.0-alpha01',
espressoCoreVersion : '3.3.0-alpha01',
daggerVersion : '2.23.2',
lifecycleVersion : '2.2.0-alpha02',
retrofitVersion : '2.6.0',
okhttpVersion : '4.0.1',
recyclerViewVersion : '1.1.0-beta01',
cardViewVersion : "1.0.0",
rxAndroidVersion : '2.1.1',
rxJavaVersion : '2.2.3',
glideVersion : '4.9.0',
truthVersion : '1.0',
truthExtVersion : '1.3.0-alpha01',
mockKVersion : '1.9.3',
orchestratorVersion : "1.1.1",
coreTestingVersion : '2.0.0',
materialVersion : "1.1.0-alpha06"
]
versionMajor = 1
versionMinor = 0
versionPatch = 0
versionCode = versionMajor * 1000000 + versionMinor * 10000 + versionPatch * 100
versionName = "${versionMajor}.${versionMinor}.${versionPatch}"
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
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
}