-
Notifications
You must be signed in to change notification settings - Fork 1
/
dependencies.gradle
60 lines (52 loc) · 2.24 KB
/
dependencies.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
//region ------------------------PROJECT----------------------------
def projectSettings = [:]
projectSettings.applicationId = "com.hpk.fuelmap"
projectSettings.keyAlias = "TestAliat"
projectSettings.keyPassword = "TestPassword"
projectSettings.storePassword = "TestPassword"
projectSettings.storeFile = "TemplateKeys.jks"
ext.projectSettings = projectSettings
//endregion ---------------------------------------------------------
//region ------------------------Build Type settings----------------------------
def buildTypeSettings = [:]
buildTypeSettings.stagingBaseUrl = "https://api-fuelmap-stag.k8s.stfalcon.com/api/"
buildTypeSettings.stagingApiVersion = "v1.0/"
buildTypeSettings.demoBaseUrl = "https://api-fuelmap-stag.k8s.stfalcon.com/api/"
buildTypeSettings.demoApiVersion = "v1.0/"
buildTypeSettings.prodBaseUrl = "https://api-fuelmap-stag.k8s.stfalcon.com/api/"
buildTypeSettings.prodApiVersion = "v1.0/"
ext.buildTypeSettings = buildTypeSettings
//endregion ---------------------------------------------------------
//region ------------------------SETTINGS----------------------------
def buildSettings = [:]
buildSettings.minSdk = 24
buildSettings.targetSdk = 33
buildSettings.compileSdk = 33
buildSettings.versionCode = 1
buildSettings.versionName = "0.1"
ext.buildSettings = buildSettings
//endregion ---------------------------------------------------------
//region ------------------------VERSIONS----------------------------
def versions = [:]
versions.androidKtxVersion="1.9.0"
versions.appCompatVersion="1.5.1"
versions.materialVersion= '1.7.0'
versions.constraintLayoutVersion="2.1.4"
versions.koinVersion= "3.1.2"
versions.koinExtVersion = "3.0.2"
versions.coroutinesVerison="1.6.1"
versions.multidexVersion="2.0.1"
versions.retrofitVersion = '2.9.0'
versions.gsonVersion = '2.9.0'
versions.okHttpVersion = '4.9.3'
versions.viewBindingUtils = '1.5.2'
versions.timberVersion = '5.0.1'
versions.timberKtVersion = '1.5.1'
versions.navigationVersion = '2.5.2'
versions.splittiesVersion = "3.0.0-rc01"
versions.dexterVersion = "6.2.3"
versions.googlePlayServicesMapsVersion = "18.1.0"
versions.googlePlayServicesLocationVersion = "21.0.0"
versions.mapUtilsVersion = "2.3.0"
ext.versions = versions
//endregion ---------------------------------------------------------