mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-01-14 13:13:34 +01:00
* Abstraction layer backup * Removed DataEntity, was unnecessary for now * Separated network, persistence, entities and interaction, closes #29 * Renamed binding * Removed build files, example tests Removed build files, example tests * Fixed build files were not being ignored all around app * Updated CI ymls * Small changes * Fixed legacy repository package names * Fixed CQ findings * Updated Fastlane * Packaging changes and version upgrades * Removed core from interactors * Version bumps * Added new module graph
20 lines
507 B
Groovy
20 lines
507 B
Groovy
apply plugin: "de.mannodermaus.android-junit5"
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation project(':abstractions')
|
|
|
|
implementation libraries.kotlin
|
|
implementation libraries.dagger
|
|
implementation libraries.timber
|
|
|
|
kapt annotationProcessors.daggerCompiler
|
|
|
|
testImplementation testLibraries.jUnitApi
|
|
testImplementation testLibraries.mockk
|
|
testImplementation testLibraries.kluent
|
|
|
|
testRuntimeOnly testLibraries.jUnitEngine
|
|
}
|