@@ -103,13 +103,13 @@ object HookEntry : IYukiHookXposedInit {
103103 // 是否开启调试模式
104104 // 请注意 - 若作为发布版本请务必关闭调试功能防止对用户设备造成大量日志填充
105105 isDebug = true
106- // Whether to enable the key-value cache function of [YukiHookModulePrefs ]
106+ // Whether to enable the key-value cache function of [YukiHookPrefsBridge ]
107107 // If there is no frequent interaction data with the Module App, it is recommended to enable it before the Host App restarts
108- // If you need real-time interactive data, it is recommended to close or configure dynamically from [YukiHookModulePrefs ]
109- // 是否启用 [YukiHookModulePrefs ] 的键值缓存功能
108+ // If you need real-time interactive data, it is recommended to close or configure dynamically from [YukiHookPrefsBridge ]
109+ // 是否启用 [YukiHookPrefsBridge ] 的键值缓存功能
110110 // 若无和模块频繁交互数据在宿主重新启动之前建议开启
111- // 若需要实时交互数据建议关闭或从 [YukiHookModulePrefs ] 中进行动态配置
112- isEnableModulePrefsCache = true
111+ // 若需要实时交互数据建议关闭或从 [YukiHookPrefsBridge ] 中进行动态配置
112+ isEnablePrefsBridgeCache = true
113113 // Whether to enable the current Xposed Module's own [Resources] cache function
114114 // Under normal circumstances, the resources of the Module App will not change
115115 // But in the case of locale changes, screen size changes. Etc. you need to refresh the cache
@@ -133,11 +133,11 @@ object HookEntry : IYukiHookXposedInit {
133133 // Enable will force [SharedPreferences] file permissions to be adjusted to [Context.MODE_WORLD_READABLE] (0664) at Module App startup
134134 // This is an optional experimental feature, this feature is not enabled by default
135135 // Only used to fix some systems that may still have file permission errors after enabling New XSharedPreferences
136- // If you can use [YukiHookModulePrefs ] normally, it is not recommended to enable this feature
136+ // If you can use [YukiHookPrefsBridge ] normally, it is not recommended to enable this feature
137137 // 是否启用 Hook [SharedPreferences]
138138 // 启用后将在模块启动时强制将 [SharedPreferences] 文件权限调整为 [Context.MODE_WORLD_READABLE] (0664)
139139 // 这是一个可选的实验性功能 - 此功能默认不启用
140- // 仅用于修复某些系统可能会出现在启用了 New XSharedPreferences 后依然出现文件权限错误问题 - 若你能正常使用 [YukiHookModulePrefs ] 就不建议启用此功能
140+ // 仅用于修复某些系统可能会出现在启用了 New XSharedPreferences 后依然出现文件权限错误问题 - 若你能正常使用 [YukiHookPrefsBridge ] 就不建议启用此功能
141141 isEnableHookSharedPreferences = false
142142 // Whether to enable the [YukiHookDataChannel] function of the current Xposed Module interacting with the Host App
143143 // Please make sure the Xposed Module's [Application] extends [ModuleApplication] to be valid
0 commit comments