ytdlnis/settings.gradle
2025-12-03 21:16:37 +01:00

19 lines
445 B
Groovy

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
rootProject.name = "YTDLnis"
include ':common', ':app', ':library', ':ffmpeg'