-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
36 lines (31 loc) · 1.13 KB
/
settings.gradle.kts
File metadata and controls
36 lines (31 loc) · 1.13 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
rootProject.name = "morphe-patches"
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
google()
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/MorpheApp/registry")
credentials {
username = providers.gradleProperty("gpr.user").getOrElse(System.getenv("GITHUB_ACTOR"))
password = providers.gradleProperty("gpr.key").getOrElse(System.getenv("GITHUB_TOKEN"))
}
}
// Obtain baksmali/smali from source builds - https://github.com/iBotPeaches/smali
// Remove when official smali releases come out again.
maven { url = uri("https://jitpack.io") }
}
}
plugins {
id("app.morphe.patches") version "1.2.0"
}
settings {
extensions {
defaultNamespace = "app.morphe.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")