mirror of
https://github.com/HighCapable/YukiHookAPI.git
synced 2025-09-01 08:15:37 +08:00
- bump "com.highcapable.sweetdependency" version to 1.0.3 - bump "com.highcapable.sweetproperty" version to 1.0.4
27 lines
942 B
Plaintext
27 lines
942 B
Plaintext
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
plugins {
|
|
id("com.highcapable.sweetdependency") version "1.0.3"
|
|
id("com.highcapable.sweetproperty") version "1.0.4"
|
|
}
|
|
sweetProperty {
|
|
global {
|
|
sourcesCode {
|
|
includeKeys("^project\\..*\$".toRegex())
|
|
isEnableRestrictedAccess = true
|
|
}
|
|
}
|
|
rootProject { all { isEnable = false } }
|
|
project(":samples") { all { isEnable = false } }
|
|
project(":samples:demo-app", ":samples:demo-module", ":yukihookapi-stub") { sourcesCode { isEnable = false } }
|
|
project(":yukihookapi-core", ":yukihookapi-ksp-xposed") { sourcesCode { className = rootProject.name } }
|
|
}
|
|
rootProject.name = "YukiHookAPI"
|
|
include(":samples:demo-app", ":samples:demo-module")
|
|
include(":yukihookapi-core", ":yukihookapi-ksp-xposed", ":yukihookapi-stub") |