forked from getspherelabs/anypass-kmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
67 lines (66 loc) · 2.14 KB
/
settings.gradle.kts
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
pluginManagement {
includeBuild("build-logic")
repositories {
google()
gradlePluginPortal()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "anypass-kmp"
include(":androidApp")
include(":shared")
include(":data")
include(":data:local")
include(":data:prefs")
include(":features")
include(":navigation")
include(":features:onboarding")
include(":features:onboarding:onboardingDomain")
include(":features:onboarding:onboardingPresentation")
include(":manager")
include(":manager:password")
include(":features:addnewpassword")
include(":features:addnewpassword:addNewPasswordDomain")
include(":core")
include(":core:designsystem")
include(":core:common")
include(":features:addnewpassword:addNewPasswodPresentation")
include(":manager:biometry")
include(":features:generatepassword")
include(":features:generatepassword:generatePasswordDomain")
include(":features:generatepassword:generatePasswordPresentation")
include(":features:home")
include(":features:home:homeDomain")
include(":features:home:homePresentation")
include(":data:authManager")
include(":features:auth")
include(":features:auth:authDomain")
include(":features:auth:authPresentation")
include(":core:analytics")
include(":features:account")
include(":features:account:accountDomain")
include(":features:account:accountPresentation")
include(":features:passphrase")
include(":features:passphrase:masterPasswordDomain")
include(":features:passphrase:masterPasswordPresentation")
include(":core:validation")
include(":core:admob")
include(":resource")
include(":resource:fonts")
include(":resource:icons")
include(":resource:strings")
include(":manager:otp")
include(":core:mlkit")
include(":features:changepassword")
include(":features:changepassword:changePasswordDomain")
include(":features:changepassword:changePasswordPresentation")