forked from openMF/mifos-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
92 lines (86 loc) · 2.67 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
92
// 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.9.8'
ossLicensesVersion = '0.10.5'
googleServicesVersion = '4.3.15'
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.6'
classpath "com.google.gms:google-services:$googleServicesVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinGradlePluginversion"
classpath "com.github.spotbugs.snom:spotbugs-gradle-plugin:5.1.2"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle filesa
}
}
plugins {
id("com.google.dagger.hilt.android") version "2.44" apply false
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://www.jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
// Sdk and tools
minSdkVersion = 22
targetSdkVersion = 33
compileSdkVersion = 33
// App dependencies
countryCodePicker = '2.7.2'
supportLibraryVersion = '1.4.2'
designLibraryVersion = '1.9.0'
recyclerViewVersion = '1.2.1'
vectorDrawablesVersion = '1.1.0'
lifecycleVersion = '2.4.1'
lifecycleExtensionsVersion = '2.2.0'
retrofitVersion = '2.9.0'
coroutinesTest = '1.7.3'
okHttp3Version = '3.14.9'
butterKnifeVersion = '8.0.1'
dbflowVersion = '4.2.4'
playServicesVersion = '17.0.1'
firebaseMessagingVersion = '21.1.0'
oss_licenses = '17.0.0'
kotlinVersion = '1.6.10'
tableViewVersion = '0.8.9.4'
biometric = '1.1.0'
archCoreVersion = '2.2.0'
coroutines = '1.6.4'
jUnitVersion = '4.13.2'
mockitoVersion = '5.4.0'
runnerVersion = '1.6.0-alpha03'
rulesVersion = '1.6.0-alpha01'
espressoVersion = '3.5.1'
zxingcoreVersion = '3.5.2'
zxingbarcodescannerVersion = '1.9.13'
rxjavaVersion = '2.2.21'
rxandroidVersion = '2.1.1'
sweeterrorVersion = '1.0.0'
mifosPasscodeVersion = '1.0.0'
cropviewVersion = '1.1.8'
multiDexVersion = '2.0.1'
annotationLibraryVersion ='1.1.0'
firebaseCrashlyticsVersion = '18.4.0'
activity_version = '1.5.0'
fragment_version = '1.5.0'
}