CoreShift
رفتن به کانال در Telegram
Developer-facing tooling only. Not intended for casual or personal use. Assumes you understand shell behavior, Android service boundaries, and the side effects of touching ART, app-ops, system properties, and device_config. Group chat - @diky_IC
نمایش بیشترکشور مشخص نشده استفناوری و برنامهها47 237
700
مشترکین
اطلاعاتی وجود ندارد24 ساعت
+17 روز
+1030 روز
آرشیو پست ها
700
CoreShift CorePolicy
CorePolicy is a unified Android policy framework that coordinates scheduler behavior, task profiles, preload strategy, and runtime enforcement to improve performance stability without aggressive tuning.Full Explanation
[CorePolicy Architecture Overview]Supported Managers
• Root: Magisk / KernelSU / APatch • Non-root: AxManagerDownload
CoreShift CorePolicySupport the Project
SociabuzzMaintainer
@Nekotor1999
700
CorePolicy v2.0 — Stable Release
Download:
https://github.com/DikyVinus/core_policy/releases/latest
CorePolicy has exited open testing and is now released as v2.0 (stable).
This release finalizes the architecture validated during open test and locks in runtime, preload, and scheduler behavior.
What’s finalized
Stable top-app resolution (cgroup → ActivityManager fallback)
Unified task-profile–based performance policy
Root / non-root execution parity
Deterministic preload + unlock behavior
Binder-safe thread handling
Integrity and runtime enforcement hardened
What changed since open test
Policy logic cleaned and consolidated
Redundant cgroup paths removed
Thread-level enforcement made explicit
Discovery → preload → perf flow stabilized
No experimental paths remain
Compatibility
Android 10+
Root and non-root supported
arm64-v8a / armeabi-v7a
Devices with ≤6 GB RAM should enable extended RAM
Notes
This is a major release. Behavior differs from pre-v2 builds.
Downgrading without reboot is not recommended.
Bug reports should include device, Android version, and root state.
End of testing
The open test phase is closed.
Future updates will follow semantic versioning and documented changelogs.
700
CorePolicy v1.4 released
What’s new:
- RAM-aware limits for shared library preloading.
Low-memory devices preload fewer libraries, higher-memory devices preload more, preventing over-locking.
- Preload logic moved from a persistent daemon to a one-shot + scheduled (cron-style) execution model.
This reduces background overhead, wakeups, and overall memory footprint while keeping behavior intact.
Repository:
https://github.com/DikyVinus/core_policy
700
Should I limit the amount of library getting preloaded per app if so how many?
700
UID="$(id -u)"
if [ "$UID" -eq 0 ]; then
RUNDIR="/data/adb/modules/core_policy/ABI"
else
RUNDIR="${AXERONDIR}/plugins/core_policy/ABI"
fi
if [ -n "$(getprop ro.product.cpu.abilist64)" ]; then
RUNDIR="$RUNDIR/arm64-v8a"
else
RUNDIR="$RUNDIR/armeabi-v7a"
fi
cat "$RUNDIR/core_preload.core" "$RUNDIR/core_preload_static.core"
Run this and share the log700
Open Test Announcement
Download:
https://github.com/DikyVinus/core_policy/releases/tag/v1.3
CorePolicy is now entering an open testing phase.
This release focuses on validating stability, integrity enforcement, and runtime behavior across diverse environments, including root and non-root setups. The objective of this phase is to identify edge cases, confirm compatibility, and ensure predictable behavior before the next stable release.
What’s being tested
Runtime integrity verification
Root and non-root execution paths
Scheduler and preload behavior under real-world usage
Language-aware installer messaging
Safety mechanisms and fallback logic
Important notes
This is a test release and may change without notice
Bug reports, regressions, and unexpected behavior are expected
Performance tuning is conservative by design during testing
Thank you for participating in the CorePolicy open test and helping validate its reliability.
700
CoreShift Power Saver
CoreShift Power Saver is a lightweight Android power optimization module that works with the system’s native scheduling and task profiles to reduce background load, improve stability, and extend battery life without aggressive tweaks. Note:If you enconter lag, force stop the app to reset its pidFull explanation
[CoreShift Power Saver Detailed Overview]Supported Managers
• Root: Magisk / KernelSU / APatch • Non-root: AxManagerDownload
CoreShift Power SaverSupport the Project
SociabuzzMaintainer
@Nekotor1999Credits
700
CoreShift Frameworks
CoreShift Frameworks is a system-aware framework designed to work with Android system processes, not against them. It improves stability and performance under load by coordinating with existing system services instead of overriding or force-controlling them. CoreShift applies targeted, reversible optimizations such as temporary prioritization and scheduling coordination only when needed. No aggressive loops. No destructive changes. No replacement of Android logic.Full explanation
[CoreShift Frameworks Detailed Overview]Supported Managers
• Root: Magisk / KernelSU / APatch • Non-root: AxManagerDownload
CoreShift FrameworksSupport the Project
SociabuzzMaintainer
@Nekotor1999Credits
700
Repost from CoreShift
CoreShift Vulkan
What CoreShift Vulkan Is
Deterministic Vulkan renderer enforcement module for the CoreShift framework. Forces the system render pipeline to Vulkan (SkiaVK / threaded RenderEngine) and stabilizes the graphics backend selection at boot-time to reduce backend thrashing, improve frame pacing consistency, and ensure predictable GPU-driven rendering behavior.Warning !!!
Force a Softreboot. Dont use this in combination with CoreShift Runtime. Do not enable on devices with incomplete or broken Vulkan implementations. Incorrect usage may result in bootloop.Changelog
Added module kill switch and Render information to the action button Added uninstall script incase where youre stuck logo, you can simply uninstall them Added softreboot gating so it doesnt trigger twiceSupported Managers
• Root: Magisk / KernelSU / APatch • Non-root: AxManagerSupport Us Here
SociabuzzDownload Here
CoreShift Frameworks
700
Repost from CoreShift
CoreShift Watchdog
What CoreShift Watchdog Is
Central runtime enforcement daemon for the CoreShift framework Continuously monitors system and application process state Identifies non-foreground, non-whitelisted workloads based on runtime behavior Applies dynamic restriction and correction actions at the process and thread level Protects critical system services and foreground workloads from interference Prevents runaway background execution, excessive wakeups, and resource abuse Designed to run persistently and self-stabilize system performance over time Functions as the last-line safeguard ensuring CoreShift policies remain effective even under abnormal conditionsChangelog
Utilize dumpsys usagestats prevent false kill and compitable with manager to add a pkg whitelist Add a ram threshold so app below 150mb ram usage get spared
Full usage guide here & hereSupported Managers
• Root: Magisk / KernelSU / APatch • Non-root: AxManagerSupport Us Here
SociabuzzDownload Here
CoreShift Frameworks
700
Repost from CoreShift
CoreShift Latency
What CoreShift Latency Is
Thread-level latency controller for the CoreShift framework Foreground-driven latency scheduler Continuously tracks the active foreground application Applies task-profiles only to latency-critical threads main and RenderThread Uses explicit CPU scheduling and cpuset assignment at the TID level Minimizes input-to-frame delay and render jitter Preserves normal background behavior without aggressive global restriction Designed for interaction responsiveness and frame-time consistencyChangelog
In-memory caching to pid for less redundant apply Added fallback foreground Migrate to C and include daemos detection to ensure compatibility and efficiency Better foreground detection latency
Full usage guide here & hereSupported Managers
• Root: Magisk / KernelSU / APatch • Non-root: AxManagerSupport Us Here
SociabuzzDownload Here
CoreShift FrameworksCredits
• @ChatGPT • @reljawa •@AduhaiWelewele
700
CoreShift Baseline
What CoreShift Baseline Is
Deterministic baseline restoration layer for the CoreShift framework. Locks the system into a known-good configuration state and prevents unintended configuration drift.How It Works
Snapshots the current global configuration table. Resets all tunables and overrides back to a clean baseline state. Stores the snapshot as the authoritative reference. No background enforcement loops. No periodic rewritesRestore Action
Action button reapplies the backed-up global table. Once restored, the backed settings are treated as final. Subsequent resets will not override or discard this state. NOTE: Always backup from a known good stateSupported Managers
• Root: Magisk / KernelSU / APatch • Non-root: AxManagerSupport Us Here
SociabuzzDownload Here
CoreShift FrameworksCredits
@hoyoslave
700
Repost from CoreShift
CoreShift Latency
What CoreShift Latency Is
Thread-level latency controller for the CoreShift framework Foreground-driven latency scheduler Continuously tracks the active foreground application Applies task-profiles only to latency-critical threads main and RenderThread Uses explicit CPU scheduling and cpuset assignment at the TID level Avoids whole-process boosting to prevent scheduler contention One-time thread promotion for stability without oscillation Minimizes input-to-frame delay and render jitter Preserves normal background behavior without aggressive global restriction Designed for interaction responsiveness and frame-time consistencyChangelog
In-memory caching to pid for less redundant apply Added fallback foreground detection to ensure compatibility and efficiency Better foreground detection latency
Full usage guide here & hereSupported Managers
• Root: Magisk / KernelSU / APatch • Non-root: AxManager
CoreShift FrameworksCredits
• @ChatGPT • @reljawa •@AduhaiWelewele
700
CoreShift Vulkan
What CoreShift Vulkan Is
Deterministic Vulkan renderer enforcement module for the CoreShift framework. Forces the system render pipeline to Vulkan (SkiaVK / threaded RenderEngine) and stabilizes the graphics backend selection at boot-time to reduce backend thrashing, improve frame pacing consistency, and ensure predictable GPU-driven rendering behavior.Warning !!!
Force a Softreboot. Dont use this in combination with CoreShift Runtime. Do not enable on devices with incomplete or broken Vulkan implementations. Incorrect usage may result in bootloop.Changelog
Added module kill switch and Render information to the action button Added uninstall script incase where youre stuck logo, you can simply uninstall them Added softreboot gating so it doesnt trigger twiceSupported Managers
• Root: Magisk / KernelSU / APatch • Non-root: AxManagerSupport Us Here
SociabuzzDownload Here
CoreShift Frameworks
700
CoreShift Daemos
What CoreShift Daemos Is
Deterministic system compositor booster for the CoreShift framework. Applies one-time cpuset elevation to critical graphics services (SurfaceFlinger and hardware graphics composer) to reduce frame scheduling jitter and improve render stability under load.
Full usage guide here & hereSupported Managers
• Root: Magisk / KernelSU / APatch • Non-root: AxManagerSupport Us Here
SociabuzzDownload Here
CoreShift FrameworksCredits
@AduhaiWelewele @reljawa
700
Repost from CoreShift
CoreShift Preload
What CoreShift Preload Is
Predictive execution and warm-up module for the CoreShift framework Reduces perceived app launch latency by preparing runtime state before interaction Triggers only on meaningful state transitions (foreground / home), not continuous polling Executes bounded, concurrency-limited preload tasks to avoid cache and memory thrash Tracks execution history to prevent redundant or repeated work Operates entirely in user space with no kernel hooks or permanent background residency Designed to complement memory compaction rather than compete with it Prioritizes responsiveness without increasing steady-state resource usageChangelog
Removed external runtime dependencies and helper wrappers. Migrated all performance-critical logic to native C. Unified control flow under a single native execution path. Reduced shell invocation surface
Full usage guide here & hereSupported Managers
• Root: Magisk / KernelSU / APatch • Non-root: AxManager
CoreShift Frameworks
اکنون در دسترس! پژوهش تلگرام ۲۰۲۵ — مهمترین بینشهای سال 
