-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
77 lines (71 loc) · 2.11 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
77 lines (71 loc) · 2.11 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
google {
content {
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
includeGroupAndSubgroups("androidx")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral {
mavenContent {
releasesOnly()
}
}
exclusiveContent {
forRepository {
maven {
name = "JitPack"
setUrl("https://jitpack.io")
}
}
filter {
includeGroup("com.github.therealbush")
includeGroup("com.github.TeamNewPipe")
}
}
}
}
// F-Droid doesn't support foojay-resolver plugin
// plugins {
// id("org.gradle.toolchains.foojay-resolver-convention") version("1.0.0")
// }
rootProject.name = "ArchiveTune"
include(":app")
include(":core")
include(":lyrics:kugou")
include(":lyrics:lrclib")
include(":lyrics:simpmusic")
include(":lyrics:paxsenix")
include(":lyrics:betterlyrics")
include(":lyrics:unison")
include(":lyrics:youlyplus")
include(":lastfm")
include(":canvas")
include(":shazamkit")
include(":spotifycore")
include(":moriextractor")
// Use a local copy of NewPipe Extractor by uncommenting the lines below.
// We assume, that ArchiveTune and NewPipe Extractor have the same parent directory.
// If this is not the case, please change the path in includeBuild().
//
// For this to work you also need to change the implementation in core/build.gradle.kts
// to one which does not specify a version.
// From:
// implementation(libs.newpipe.extractor)
// To:
// implementation("com.github.TeamNewPipe:NewPipeExtractor")
// includeBuild("../NewPipeExtractor") {
// dependencySubstitution {
// substitute(module("com.github.TeamNewPipe:NewPipeExtractor")).using(project(":extractor"))
// }
// }