-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathsettings.gradle
More file actions
44 lines (36 loc) · 1.17 KB
/
settings.gradle
File metadata and controls
44 lines (36 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
plugins {
id 'com.android.application' version '9.2.1' apply false
id 'com.android.library' version '9.2.1' apply false
id 'org.jetbrains.kotlin.android' version '2.3.21' apply false
id 'org.jetbrains.kotlin.kapt' version '2.3.21' apply false
id 'org.jetbrains.kotlin.plugin.parcelize' version '2.3.21' apply false
id 'org.jetbrains.kotlin.plugin.compose' version '2.3.21' apply false
id 'org.sonarqube' version '7.3.0.8198' apply false
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "https://clojars.org/repo" }
}
}
rootProject.name = "PipePipe"
include ':app'
include ':ffmpeg'
includeBuild('../PipePipeExtractor') {
dependencySubstitution {
substitute module('com.github.TeamNewPipe:NewPipeExtractor') using project(':extractor')
}
}