mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-03-30 06:11:55 +02:00
WIP: feature/abstractions (#45)
* 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
This commit is contained in:
@@ -3,6 +3,7 @@ apply plugin: 'kotlin-android'
|
||||
apply plugin: 'kotlin-kapt'
|
||||
|
||||
apply from: "$rootProject.projectDir/scripts/default_android_config.gradle"
|
||||
apply from: "$rootProject.projectDir/scripts/default_dependencies.gradle"
|
||||
apply from: "$rootProject.projectDir/scripts/sources.gradle"
|
||||
|
||||
android {
|
||||
@@ -31,10 +32,14 @@ dependencies {
|
||||
|
||||
androidTestImplementation testLibraries.espresso
|
||||
|
||||
// These libraries required by dagger to create dependency graph, but not by app
|
||||
compileOnly project(':repository')
|
||||
// These libraries required by dagger to create dependency graph and application compilation, but not used by app
|
||||
|
||||
compileOnly project(':abstractions')
|
||||
compileOnly project(':data:interactors')
|
||||
compileOnly project(':data:network')
|
||||
compileOnly project(':data:definitions')
|
||||
|
||||
compileOnly libraries.retrofit
|
||||
compileOnly libraries.room
|
||||
compileOnly libraries.paging
|
||||
compileOnly libraries.swipeRefreshLayout
|
||||
|
||||
|
||||
5
app/proguard-rules.pro
vendored
5
app/proguard-rules.pro
vendored
@@ -21,8 +21,5 @@
|
||||
@com.squareup.moshi.ToJson <methods>;
|
||||
}
|
||||
|
||||
-keepnames @kotlin.Metadata class com.myapp.packagename.model.**
|
||||
-keep class com.myapp.packagnename.model.** { *; }
|
||||
|
||||
# Keeping entities intact
|
||||
-keep class com.melih.repository.entities.** { *; }
|
||||
-keep class com.melih.definitions.entities.** { *; }
|
||||
|
||||
Reference in New Issue
Block a user