-
Notifications
You must be signed in to change notification settings - Fork 32
/
build.gradle
86 lines (76 loc) · 2.48 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
sample_app_version = '1.0'
sample_app_code_version = 1
omise_sdk_version = '5.4.0'
omise_sdk_code_version = 54
compile_sdk_version = 34
build_tools_version = '29.0.3'
min_sdk_version = 21
target_sdk_version = 34
omise_threeds_sdk_version = '1.0.0-alpha12'
kotlin_version = '1.7.10'
android_plugin_version = '8.2.2'
appcompat_version = '1.3.0'
joda_time_version = '2.9.2'
okhttp_version = '4.9.0'
material_version = '1.0.0'
support_annotations_version = '28.0.0'
guava_version = '19.0'
jackson_version = '2.11.0'
preference_version = '1.1.0'
annotation_version = '1.0.0'
fragment_testing_version = '1.2.0-alpha01'
junit_version = '4.12'
test_version = '1.3.0-alpha01'
robolectric_version = '4.10.3'
espresso_version = '3.5.1'
junit_ext_version = '1.1.1'
mockito_version = '5.3.1'
mockito_kotlin_version = '5.0.0'
constraintlayout_version = '1.1.3'
coroutines_version = '1.6.4'
lifecycle_version = '2.2.0'
arch_version = '2.1.0'
dexopener_version = '2.0.5'
jacoco_version = '0.8.10'
sonarqube_version = '4.3.1.3277'
uiautomator_version = '2.2.0'
activity_version = '1.2.4'
}
repositories {
google()
mavenCentral()
maven {
url 'https://maven.google.com/'
name 'Google'
}
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.android.tools.build:gradle:$android_plugin_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jacoco:org.jacoco.core:$jacoco_version"
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:$sonarqube_version"
classpath 'org.jlleitschuh.gradle:ktlint-gradle:12.0.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
maven {
url 'https://maven.google.com/'
name 'Google'
}
mavenLocal()
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}