1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-12-23 00:20:32 +00:00
NewPipe/build.gradle

26 lines
659 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()
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
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
}
}