1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-12-21 23:50:32 +00:00
NewPipe/settings.gradle
Profpatsch 4604a89137 WIP: Inject (a local) NewPlayer into the NewPipe application
This is the basic setup that allows us to inject a NewPlayer instance
into NewPipe. Frankenpipe, rise!
2024-12-05 14:34:48 +01:00

19 lines
585 B
Groovy

include ':app'
// Use a local copy of NewPipe Extractor by uncommenting the lines below.
// 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') {
// dependencySubstitution {
// substitute module('com.github.TeamNewPipe:NewPipeExtractor') using project(':extractor')
// }
//}
includeBuild('../NewPlayer') {
dependencySubstitution {
substitute module('com.github.TeamNewPipe:NewPlayer') using project(':new-player')
}
}