From a4945b48270699b0043ee3e0ada6cc978e9892bd Mon Sep 17 00:00:00 2001 From: Naveen Date: Wed, 6 Sep 2023 18:15:48 +0530 Subject: [PATCH] Include simple-commons locally --- settings.gradle.kts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/settings.gradle.kts b/settings.gradle.kts index a1c8e5667..e58479029 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -17,4 +17,12 @@ dependencyResolutionManagement { maven(url = "https://artifactory.img.ly/artifactory/imgly") } } +// TODO: This will be deprecated in future. Migrate to the newer `pluginManagement { includeBuild() }` mechanism instead of explicitly substituting dependency. +includeBuild("../Simple-Commons") { + dependencySubstitution { + substitute(module("com.github.SimpleMobileTools:Simple-Commons")).using(project(":commons")) + } +} +rootProject.name = "Simple-Gallery" +enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") include(":app")