mirror of
https://github.com/HighCapable/YukiHookAPI.git
synced 2025-10-19 01:29:26 +08:00
30 lines
765 B
Plaintext
30 lines
765 B
Plaintext
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.highcapable.sweetdependency") version "1.0.4"
|
|
id("com.highcapable.sweetproperty") version "1.0.8"
|
|
}
|
|
|
|
sweetProperty {
|
|
global {
|
|
sourcesCode {
|
|
includeKeys("^project\\..*\$".toRegex())
|
|
isEnableRestrictedAccess = true
|
|
}
|
|
}
|
|
rootProject { all { isEnable = false } }
|
|
project(":samples:app", ":samples:module") { sourcesCode { isEnable = false } }
|
|
}
|
|
|
|
rootProject.name = "YukiHook"
|
|
|
|
include(":samples:app", ":samples:module")
|
|
include(":yukihook-core", ":yukihook-api-rovo89", ":yukihook-api-libxposed", ":yukihook-api-helper") |