-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsettings.gradle.kts
122 lines (100 loc) · 3.54 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
pluginManagement {
includeBuild("build-logic")
repositories {
google()
gradlePluginPortal()
mavenCentral()
maven("https://plugins.gradle.org/m2/")
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(":data:authManager")
include(":manager")
include(":manager:password")
include(":manager:otp")
include(":manager:biometry")
include(":core")
include(":core:designsystem")
include(":core:common")
include(":core:analytics")
include(":core:validation")
include(":core:admob")
include(":core:mlkit")
include(":core:system")
include(":core:system:foundation")
include(":resource")
include(":resource:fonts")
include(":resource:icons")
include(":resource:strings")
include(":features")
include(":features:newtoken:newtoken-api")
include(":features:newtoken:newtoken-impl")
include(":features:newtoken:newtoken-di")
include(":features:auth")
include(":features:auth:auth-api")
include(":features:auth:auth-di")
include(":features:auth:auth-impl")
include(":features:onboarding")
include(":features:onboarding:onboarding-api")
include(":features:onboarding:onboarding-di")
include(":features:onboarding:onboarding-impl")
include(":resource:images")
include(":features:home")
include(":features:home:home-api")
include(":features:home:home-impl")
include(":features:home:home-di")
include(":features:keypassword")
include(":features:keypassword:keypassword-api")
include(":features:keypassword:keypassword-impl")
include(":features:keypassword:keypassword-di")
include(":features:addnewpassword")
include(":features:addnewpassword:addnewpassword-api")
include(":features:addnewpassword:addnewpassword-impl")
include(":features:addnewpassword:addnewpassword-di")
include(":features:account")
include(":features:account:account-api")
include(":features:account:account-impl")
include(":features:account:account-di")
include(":features:generatepassword")
include(":features:generatepassword:generatepassword-api")
include(":features:generatepassword:generatepassword-impl")
include(":features:generatepassword:generatepassword-di")
include(":features:changepassword")
include(":features:changepassword:changepassword-api")
include(":features:changepassword:changepassword-impl")
include(":features:changepassword:changepassword-di")
include(":features:authenticator")
include(":features:authenticator:authenticator-api")
include(":features:authenticator:authenticator-impl")
include(":features:authenticator:authenticator-di")
include(":features:passwordhealth")
include(":features:passwordhealth:passwordhealth-api")
include(":features:passwordhealth:passwordhealth-di")
include(":features:passwordhealth:passwordhealth-impl")
include(":features:navigation")
include(":features:navigation:navigation-api")
include(":features:help")
include(":features:help:help-api")
include(":features:help:help-impl")
include(":features:help:help-di")
include(":features:help:help-store")
include(":core:system:ui")
include(":features:passwordhistory")
include(":features:passwordhistory:passwordhistory-api")
include(":features:passwordhistory:passwordhistory-impl")
include(":features:passwordhistory:passwordhistory-di")