android-clean-architecture-boilerplate icon indicating copy to clipboard operation
android-clean-architecture-boilerplate copied to clipboard

Presentation Gradle has wrong rootProject.ext

Open SammyJankis opened this issue 7 years ago • 0 comments
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.

SammyJankis avatar Jun 19 '18 08:06 SammyJankis