-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
36 lines (30 loc) · 884 Bytes
/
settings.gradle.kts
File metadata and controls
36 lines (30 loc) · 884 Bytes
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
rootProject.name = "revanced-experiments-patches"
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
google()
maven {
name = "githubPackages"
url = uri("https://maven.pkg.github.com/revanced/revanced-patches-gradle-plugin")
credentials(PasswordCredentials::class)
}
}
}
dependencyResolutionManagement {
repositories {
mavenLocal()
}
}
plugins {
id("app.revanced.patches") version "1.0.0-dev.10"
}
settings {
extensions {
defaultNamespace = "app.revanced.extension"
// Must resolve to an absolute path (not relative),
// otherwise the extensions in subfolders will fail to find the proguard config.
proguardFiles(rootProject.projectDir.resolve("extensions/proguard-rules.pro").toString())
}
}
include(":patches:stub")