mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-01-14 21:23:45 +01:00
* CircleCI config fixes * Implicit deeplinking via navController navigate * Removed jacoco.exec files. Closes # 32
19 lines
424 B
Groovy
19 lines
424 B
Groovy
apply plugin: "androidx.navigation.safeargs"
|
|
apply from: "$rootProject.projectDir/scripts/module.gradle"
|
|
|
|
android {
|
|
dataBinding {
|
|
enabled = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
|
|
implementation libraries.fragment
|
|
implementation libraries.lifecycle
|
|
implementation libraries.liveDataKTX
|
|
implementation libraries.navigation
|
|
implementation libraries.constraintLayout
|
|
}
|