-
Notifications
You must be signed in to change notification settings - Fork 698
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
82 lines (75 loc) · 3.12 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
82 lines (75 loc) · 3.12 KB
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
/*
* Copyright 2025 Mifos Initiative
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*
* See https://github.com/openMF/mifos-x-field-officer-app/blob/master/LICENSE.md
*/
plugins {
alias(libs.plugins.kmp.library.convention)
alias(libs.plugins.cmp.feature.convention)
alias(libs.plugins.kmp.koin.convention)
alias(libs.plugins.kotlin.serialization)
}
android {
namespace = "cmp.navigation"
}
kotlin {
sourceSets {
commonMain.dependencies{
implementation(libs.kotlinx.serialization.json)
implementation(projects.core.domain)
implementation(projects.core.common)
implementation(projects.core.data)
implementation(projects.core.datastore)
implementation(projects.core.database)
implementation(projects.core.network)
implementation(projects.coreBase.common)
implementation(projects.feature.about)
implementation(projects.feature.activate)
implementation(projects.feature.auth)
implementation(projects.feature.center)
implementation(projects.feature.checkerInboxTask)
implementation(projects.feature.client)
implementation(projects.feature.collectionSheet)
implementation(projects.feature.dataTable)
implementation(projects.feature.groups)
implementation(projects.feature.document)
implementation(projects.feature.loan)
implementation(projects.feature.note)
implementation(projects.feature.offline)
implementation(projects.feature.pathTracking)
implementation(projects.feature.report)
implementation(projects.feature.savings)
implementation(projects.feature.recurringDeposit)
implementation(projects.feature.settings)
implementation(projects.feature.search)
implementation(projects.feature.searchRecord)
implementation(projects.feature.standingInstruction)
implementation(projects.feature.passcode)
implementation(compose.material3)
implementation(compose.foundation)
implementation(compose.ui)
implementation(compose.components.uiToolingPreview)
implementation(compose.components.resources)
implementation(libs.window.size)
implementation(libs.koin.compose)
implementation(libs.koin.compose.viewmodel)
implementation(libs.mifos.authenticator.passcode)
implementation(libs.mifos.authenticator.biometrics)
implementation(libs.jb.navigationevent)
}
androidMain.dependencies {
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.tracing.ktx)
implementation(libs.koin.android)
}
}
}
compose.resources {
publicResClass = true
generateResClass = always
packageOfResClass = "org.mifos.navigation.generated.resources"
}