7 个仓库
Techniques for reducing memory footprint and binary size specifically for Android applications.
Distinct from Android App Modularization: Candidates focus on modularization or runtime containers, not general memory and code size reduction for stability.
Explore 7 awesome GitHub repositories matching mobile development · Android Performance Optimizations. Refine with filters or upvote what's useful.
AgentWeb is an Android library that enhances the standard WebView component by applying performance optimizations and improving loading behavior. Its core purpose is to eliminate the blank white screen that users often see when a WebView first loads, and to reduce overall page load latency through pre-initialization and instance reuse strategies. The library achieves this through several key techniques. It pre-initializes the WebView rendering engine early in the app lifecycle so the first page load is not delayed by kernel startup. It also pre-loads the dedicated WebView process before it is
Provides the core performance optimization techniques for Android WebView, eliminating blank screens and reducing load latency.
android-ktx is a Kotlin extension library for the Android framework. It provides a collection of idiomatic helper functions that wrap native system calls to reduce boilerplate and improve code readability throughout Android application development. The library implements a set of tools for building styled strings, transformation matrices, and graphical elements. It utilizes a builder-based syntax to simplify the construction of system objects such as content values and data bundles. The project covers a broad range of capabilities, including the simplification of view manipulations and time
Implements memory-efficient collections and cache eviction strategies to reduce memory footprint and improve app stability.
DroidPlugin is an Android plugin framework designed to execute third-party APKs and native binaries without requiring installation or modifications to the host application manifest. It provides a native binary plugin host that allows the loading of C and C++ binaries through native hooks to extend core application functionality. The framework utilizes a component router to direct activities and services to external plugins, bypassing the need for manual registration in the host manifest. It further decouples external activities from the host lifecycle through a proxy-based mechanism. The sys
Optimizes system performance by automatically recycling idle plugin processes to minimize overall memory consumption.
AndroidProject is an application framework and development suite for Android that provides a collection of base classes and utilities designed to accelerate the creation and refactoring of mobile projects. It functions as a foundational system for managing application architecture and common shared features. The framework includes a specialized activity result manager that replaces manual callback overrides with listener objects and automated request code generation. It also provides a performance optimization library focused on reducing memory usage and code size to improve application stabi
Reduces memory usage and code size to improve the overall stability and efficiency of the mobile application.
A bytecode optimizer for Android apps
Shrinks and speeds up Android APKs by applying bytecode optimization passes.
Booster 是一个 Android 应用构建优化器和字节码操作工具,旨在减小二进制体积、修复系统级崩溃并提升应用性能。它作为一个可扩展的构建流程插件,通过修改已编译的类文件和构建产物来注入稳定性修复和优化,而无需更改原始源代码。 该项目的差异化优势在于利用底层字节码操作来修补 OS 级 Bug,并在编译阶段管理线程池。它还提供了一个性能分析工具包,用于识别主线程阻塞操作并分析资源相关的稳定性问题。 该工具涵盖了广泛的包优化能力,包括 PNG 和 WebP 的图像压缩、冗余资源剔除以及资源索引优化。其他功能包括针对线程管理、异步偏好设置写入的性能调优,以及用于扫描构建产物以检测安全风险和瓶颈的静态分析。 该系统利用服务提供者接口(SPI)进行自定义插件集成,并可作为与主要构建环境解耦的独立应用程序执行。
Initializes the browser engine during idle periods to prevent freezes during WebView instantiation.
This project is a diagnostic tool and memory profiler designed to identify and track memory allocation patterns within native code layers. It functions as a native code debugging utility that monitors heap usage and resource lifecycle management to assist in the resolution of memory leaks and resource exhaustion issues. The tool utilizes hook-based allocation interception to maintain a real-time map of active memory blocks and employs shadow-stack call tracing to associate these blocks with specific code locations. By performing periodic reachability analysis and differential memory snapshott
Analyzes resource allocation patterns in mobile applications to reduce memory footprint and ensure smooth performance on resource-constrained devices.