From 1314a21f7138a2c097e5bd8b2cba06c4d564a04b Mon Sep 17 00:00:00 2001 From: TransZAllen Date: Sun, 2 Nov 2025 15:44:59 +0800 Subject: [PATCH] fix: update commented example in `settings.gradle.kts` for Kotlin DSL - Resolves build issue related to local NewPipeExtractor inclusion - Related issue: https://github.com/TeamNewPipe/NewPipe/issues/12763 --- settings.gradle.kts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/settings.gradle.kts b/settings.gradle.kts index d9e899151..60a40c985 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -25,8 +25,9 @@ include (":app") // We assume, that NewPipe and NewPipe Extractor have the same parent directory. // If this is not the case, please change the path in includeBuild(). -//includeBuild('../NewPipeExtractor') { +//includeBuild("../NewPipeExtractor") { // dependencySubstitution { -// substitute module('com.github.TeamNewPipe:NewPipeExtractor') using project(':extractor') +// substitute(module("com.github.TeamNewPipe:NewPipeExtractor")) +// .using(project(":extractor")) // } //}