3 repositorios
Tools for analyzing layout boundaries and rendering timing to identify performance bottlenecks in user interfaces.
Distinct from Android Application Debugging: Focuses specifically on visual and timing markers for UI rendering performance rather than general app state inspection.
Explore 3 awesome GitHub repositories matching mobile development · UI Performance Debugging. Refine with filters or upvote what's useful.
Litho is an Android declarative UI framework and component library used to build user interfaces through a declarative API and immutable state. It functions as an asynchronous layout engine that maps components to a structured view hierarchy to automate view updates. The framework optimizes rendering performance by computing element positions on background threads to prevent blocking the main UI thread. It further improves efficiency by flattening nested view hierarchies and caching layout results. The system includes capabilities for state reconciliation, component recycling, and the render
Includes tools for visualizing component bounds and tracking rendering timing markers to optimize layout performance.
Fastdom is a task scheduler and rendering optimizer designed to prevent layout thrashing by batching document reads and writes. It functions as a coordination system that separates document measurements and mutations into distinct queues, ensuring that asynchronous operations are executed in a way that minimizes browser reflows. The project provides a performance profiling capability that detects improper document API access. By enforcing strict execution phases, it identifies layout thrashing bottlenecks and flags unauthorized DOM access occurring outside of the coordinated batching cycles.
Identifies layout thrashing bottlenecks by analyzing rendering timing and improper DOM API access.
AndroidPerformanceMonitor is a diagnostic library and debugging tool designed to detect UI freezes and monitor main thread responsiveness in Android applications. It functions as a UI block detector that identifies performance degradation by capturing thread stack dumps and performance logs. The tool utilizes a watchdog mechanism to monitor the main thread for hangs based on configurable time thresholds. When a block is detected, it captures a full call stack dump and triggers system-level alert notifications to notify developers immediately. The library includes capabilities for performance
Detects UI freezes and blocks on the main thread to help identify performance bottlenecks in Android apps.