-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-dependencies.gradle
More file actions
44 lines (39 loc) · 1.89 KB
/
build-dependencies.gradle
File metadata and controls
44 lines (39 loc) · 1.89 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
ext {
//==============================================================================================
// Versions - Application
//==============================================================================================
NAV_VERSION = "2.1.0"
//==============================================================================================
//
//
//
//
//==============================================================================================
// SUBMODULES
//==============================================================================================
submodulesFeatures = [
splashScreen : ':features:feature-splashscreen',
featureOne : ':features:feature-one',
featureTwo : ':features:feature-two',
]
submodulesLibraries = [
sharedArc : ':libraries:library-shared-architecture',
]
//==============================================================================================
//
//
//
//
//==============================================================================================
// Compiles - Application
//==============================================================================================
globalDependencies = [
kotlinStdLib : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.50",
appCompact : "androidx.appcompat:appcompat:1.1.0",
constraintlayout : "androidx.constraintlayout:constraintlayout:1.1.3",
koin : "org.koin:koin-android:2.0.1",
// ANDROID ARQ
navigationFragment : "androidx.navigation:navigation-fragment-ktx:$NAV_VERSION",
navigationFragmentUi : "androidx.navigation:navigation-ui-ktx:$NAV_VERSION"
]
}