forked from openwallet-foundation-labs/identity-credential
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
69 lines (65 loc) · 2.26 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.5.30'
ext {
test_runner_version = '1.3.0'
appcompat_version = '1.2.0'
core_ktx_version = '1.6.0-alpha02'
espresso_core_version = '3.3.0'
junit_version = '4.13.2'
junit_test = '1.1.2'
zxing_version = '3.4.0'
zxing_android_version = '3.6.0'
test_core_version = '1.3.0'
mockito_version = '3.9.0'
sonar_gradle_plugin = '2.6.2'
jacoco = '0.7.9'
jacoco_android = '0.1.4'
groovy = '2.4.12'
navigation_version = '2.3.5'
lifecycle_version = '2.2.0'
lifecycle_ktx_version = '2.4.0-alpha01'
safe_args_vesion = '1.0.0'
fragment_version = '1.3.3'
material_version = "1.0.0"
anko_version = '0.10.8'
qrcode_version = '2.1.0'
cbor_version = '0.8'
constraint_layout_version = '2.1.0-beta01'
bouncy_castle_version = '1.65'
rxandroid_version = '2.1.1'
rxjava_version = '2.2.21'
androidx_annotation_version = '1.2.0'
cardview_version = '1.0.0'
android_gradle_plugin = '4.1.3'
androidx_identity_credential = '1.0.0-alpha02'
androidx_biometrics = '1.2.0-alpha03'
androidx_preference = '1.1.1'
androidx_room_version = '2.3.0'
apache_http_version = '4.4.14'
volley_version = '1.2.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$android_gradle_plugin"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30-RC"
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 "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
}