Modern Xposed Module API — a type-safe, redesigned replacement for the legacy XposedBridge API.
dependencies {
compileOnly("io.github.libxposed:api:102.0.0")
}If minification is enabled, add these rules to the app's ProGuard/R8 configuration:
-dontwarn io.github.libxposed.annotation.**
-adaptresourcefilecontents META-INF/xposed/java_init.list
-keep,allowoptimization,allowobfuscation public class * extends io.github.libxposed.api.XposedModule {
public <init>();
}
These rules keep module entry classes from being removed and rewrite META-INF/xposed/java_init.list when entry classes are obfuscated.
dependencies {
implementation("io.github.libxposed:api:102.0.0")
}- libxposed/helper — Friendly development kit library
- libxposed/service — Framework communication service
- libxposed/example - Example module using the modern Xposed API
This project is licensed under the Apache License 2.0.