LibreTube/build.gradle.kts
FineFindus 5627a93065
feat(LocalFeedRepository): filter members only videos
YouTube inserts Members only videos into the normal video feed.
As there not watchable without signing in, they clutter the feed, this
filters them out before the're displayed.
Ref: https://github.com/FineFindus/NewPipeExtractor/tree/feat/member-channeltab-info
2025-04-15 15:12:22 +02:00

38 lines
979 B
Plaintext

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath(libs.gradle)
classpath(libs.kotlin.gradle.plugin)
classpath(libs.kotlin.serialization)
classpath(libs.androidx.navigation.safeargs)
// NOTE: Do not place your application dependencies here, they belong
// in the individual module build.gradle.kts files
}
}
allprojects {
repositories {
mavenLocal()
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
}
}
plugins {
alias(libs.plugins.androidTest) apply false
alias(libs.plugins.jetbrainsKotlinAndroid) apply false
alias(libs.plugins.baselineprofile) apply false
alias(libs.plugins.androidApplication) apply false
}
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}