NewPipe/build.gradle

28 lines
759 B
Groovy
Raw Normal View History

2015-09-04 00:15:03 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
2017-09-19 18:08:52 +00:00
google()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
2015-09-04 00:15:03 +00:00
}
dependencies {
2024-11-22 20:59:39 +00:00
classpath libs.android.tools.build.gradle
classpath libs.kotlin.gradle.plugin
classpath libs.hilt.android.gradle.plugin
2024-11-27 15:20:49 +00:00
classpath libs.aboutlibraries.plugin
2015-09-04 00:15:03 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2017-09-19 18:08:52 +00:00
google()
mavenCentral()
maven { url "https://jitpack.io" }
2022-08-09 23:19:03 +00:00
maven { url "https://repo.clojars.org" }
2015-09-04 00:15:03 +00:00
}
}