forked from openMF/mifos-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
85 lines (76 loc) · 2.41 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
jcenter()
}
ext {
gradleVersion = '7.2.0'
crashlyticsGradleVersion = '2.4.1'
ossLicensesVersion = '0.10.5'
googleServicesVersion = '4.3.10'
kotlinGradlePluginversion = '1.6.21'
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "com.google.firebase:firebase-crashlytics-gradle:$crashlyticsGradleVersion"
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.5'
classpath "com.google.gms:google-services:$googleServicesVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinGradlePluginversion"
classpath "com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.8"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle filesa
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://www.jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
// Sdk and tools
minSdkVersion = 22
targetSdkVersion = 31
compileSdkVersion = 31
// App dependencies
supportLibraryVersion = '1.4.2'
designLibraryVersion = '1.6.1'
daggerVersion = '2.42'
recyclerViewVersion = '1.2.1'
vectorDrawablesVersion = '1.1.0'
lifecycleVersion = '2.4.1'
lifecycleExtensionsVersion = '2.2.0'
retrofitVersion = '2.2.0'
okHttp3Version = '3.6.0'
butterKnifeVersion = '8.0.1'
dbflowVersion = '4.1.2'
playServicesVersion = '17.0.0'
firebaseMessagingVersion = '21.0.1'
oss_licenses = '17.0.0'
kotlinVersion = '1.6.10'
tableViewVersion = '0.8.9.4'
jUnitVersion = '4.12'
mockitoVersion = '3.6.28'
runnerVersion = '1.1.0-alpha4'
rulesVersion = '1.3.1-alpha02'
espressoVersion = '3.4.0-alpha02'
zxingcoreVersion = '3.2.1'
zxingbarcodescannerVersion = '1.9.13'
rxjavaVersion = '2.2.20'
rxandroidVersion = '2.1.1'
sweeterrorVersion = '1.0.0'
mifosPasscodeVersion = '0.3.0'
cropviewVersion = '1.1.8'
multiDexVersion = '2.0.1'
annotationLibraryVersion ='1.1.0'
firebaseCrashlyticsVersion = '17.3.0'
}