forked from JingMatrix/LSPatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
47 lines (43 loc) · 1.16 KB
/
settings.gradle.kts
File metadata and controls
47 lines (43 loc) · 1.16 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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
versionCatalogs {
create("libs") {
from(files("core/gradle/libs.versions.toml"))
}
create("lspatch") {
from(files("gradle/lspatch.versions.toml"))
}
}
}
rootProject.name = "LSPatch"
include(
":apkzlib",
":jar",
":manager",
":meta-loader",
":patch",
":patch-loader",
":share:android",
":share:java",
)
includeBuild("core") {
dependencySubstitution {
substitute(module("vector:axml")).using(project(":external:axml"))
substitute(module("vector:bridge")).using(project(":hiddenapi:bridge"))
substitute(module("vector:core")).using(project(":core"))
substitute(module("vector:daemon-service")).using(project(":services:daemon-service"))
substitute(module("vector:stubs")).using(project(":hiddenapi:stubs"))
}
}