Skip to content

Commit 1314a21

Browse files
committed
fix: update commented example in settings.gradle.kts for Kotlin DSL
- Resolves build issue related to local NewPipeExtractor inclusion - Related issue: #12763
1 parent 650b51f commit 1314a21

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

settings.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ include (":app")
2525
// We assume, that NewPipe and NewPipe Extractor have the same parent directory.
2626
// If this is not the case, please change the path in includeBuild().
2727

28-
//includeBuild('../NewPipeExtractor') {
28+
//includeBuild("../NewPipeExtractor") {
2929
// dependencySubstitution {
30-
// substitute module('com.github.TeamNewPipe:NewPipeExtractor') using project(':extractor')
30+
// substitute(module("com.github.TeamNewPipe:NewPipeExtractor"))
31+
// .using(project(":extractor"))
3132
// }
3233
//}

0 commit comments

Comments
 (0)