-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
91 lines (78 loc) · 3.05 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compileSdkVersion = 29
minSdkVersion = 21
targetSdkVersion = 29
kotlinVersion = '1.3.21'
junitVersion = '4.13-beta-2'
testRunnerVersion = '1.2.0-beta01'
espressoVersion = '3.2.0-beta01'
androidX = [
annotation : '1.1.0', // done
appcompat : '1.1.0-rc01', // done
archCore : '2.1.0-rc01',// done
biometric : '1.0.0-alpha04', //done
contstraintlayout : '2.0.0-beta2', // done
coordinatorlayout : '1.1.0-beta01', // done
core : '1.1.0-rc02',
drawerlayout : '1.0.0', // done
fragment : '1.1.0-rc03', // done
lifecycle : '2.2.0-alpha02', // done
navigation : '2.1.0-beta02', // done
palette : '1.0.0', // done
preference : '1.1.0-rc01', // done
recyclerview : '1.1.0-beta01', // done
recyclerviewSelection: '1.1.0-alpha06', // done
transition : '1.1.0',
vectorDrawable : '1.1.0-rc01',
viewpager2 : '1.0.0-alpha06'
]
playVersion = [
core : '1.6.1',
vision: '18.0.0'
]
takisoftVersion = [
preferencex: '1.1.0-alpha05',
colorpicker: '1.0.0'
]
materialComponentsVersion = '1.1.0-alpha08'
libVersions = [
sqlCipher : '4.2.0',
requery : '1.6.1',
sqlite : '3.29.0',
dagger : '2.19',
rxAndroid : '2.1.1',
rxJava : '2.2.8',
timber : '4.7.1',
dotsindicator : '3.0.3',
circularProgressIndicator: '1.3.0',
zip4j : '1.3.3',
zxing : '3.3.3',
gson : '2.8.5',
licensesdialog : '2.1.0'
]
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0-rc01'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:${androidX.navigation}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}