mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-01-11 20:00:32 +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
32 lines
859 B
Groovy
32 lines
859 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
apply from: "$rootProject.projectDir/scripts/module.gradle"
|
|
apply from: "$rootProject.projectDir/scripts/default_dependencies.gradle"
|
|
|
|
android {
|
|
defaultConfig {
|
|
javaCompileOptions {
|
|
annotationProcessorOptions {
|
|
arguments = ["room.schemaLocation": "$rootProject.projectDir/reports/room".toString()]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation project(':data:definitions')
|
|
|
|
implementation libraries.moshiKotlin
|
|
implementation libraries.coroutines
|
|
implementation libraries.room
|
|
|
|
kapt annotationProcessors.roomCompiler
|
|
|
|
testImplementation testLibraries.coroutinesCore
|
|
testImplementation testLibraries.coroutinesTest
|
|
}
|