forked from openwallet-foundation/multipaz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
67 lines (62 loc) · 2.19 KB
/
build.gradle
File metadata and controls
67 lines (62 loc) · 2.19 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
60
61
62
63
64
65
66
67
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.60'
ext {
kotlin_version = '1.3.60'
test_runner_version = '1.3.0-alpha02'
appcompat_version = '1.1.0'
core_ktx_version = '1.2.0-rc01'
espresso_core_version = '3.3.0-alpha02'
junit_version = '4.13-rc-1'
zxing_version = '3.4.0'
zxing_android_version = '3.6.0'
test_core_version = '1.2.0'
mockito_version = '3.1.0'
sonar_gradle_plugin = '2.6.2'
jacoco = '0.7.9'
jacoco_android = '0.1.4'
groovy = '2.4.12'
navigation_version = '2.2.0-rc02'
lifecycle_version = '2.2.0-rc02'
safe_args_vesion = '1.0.0'
fragment_version = '1.2.0-rc02'
material_version = "1.0.0"
anko_version = '0.10.8'
qrcode_version = '2.1.0'
cbor_version = '0.8'
constraint_layout_version = '2.0.0-beta3'
bouncy_castle_version = '1.62'
rxandroid_version = '2.1.1'
rxjava_version = '2.2.14'
androidx_annotation_version = '1.1.0'
cardview_version = '1.0.0'
android_gradle_plugin = '3.5.3'
androidx_biometrics = '1.0.0'
androidx_preference = '1.1.0'
androidx_room_version = '2.2.2'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:${android_gradle_plugin}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:$sonar_gradle_plugin"
classpath "org.jacoco:org.jacoco.core:$jacoco"
classpath "org.codehaus.groovy:groovy-all:$groovy"
classpath "com.dicedmelon.gradle:jacoco-android:$jacoco_android"
classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:$safe_args_vesion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}