bufferapp/android-clean-architecture-boilerplate

Presentation Gradle has wrong rootProject.ext

SammyJankis opened this issue · 0 comments

Presentation gradle has :

def presentationDependencies = rootProject.ext.cacheDependencies
def presentationTestDependencies = rootProject.ext.cacheTestDependencies

but I guess that this has to be something like :

def presentationDependencies = rootProject.ext.presentationDependencies
def presentationTestDependencies = rootProject.ext.presentationTestDependencies

Also in dependencies.gradle, presentationDependencies has to be changed to provide only the necessary libraries.