android-clean-architecture-boilerplate
android-clean-architecture-boilerplate copied to clipboard
Presentation Gradle has wrong rootProject.ext
trafficstars
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.