Install EzXHelper dependencies
3.xEzXHelper is modular. You must include the core library, and then choose the appropriate Xposed API compatibility layer and optional utilities based on your target environment.
Modules:
core: The main library.xposed-api-82: For Xposed API 82 compatibility.xposed-api-101: For Xposed API 101 compatibility.android-utils: (Optional) Provides Android-specific utility extensions.
// build.gradle
dependencies {
def ezxhelperVersion = '<version>'
implementation "io.github.kyuubiran.ezxhelper:core:$ezxhelperVersion"
implementation "io.github.kyuubiran.ezxhelper:xposed-api-82:$ezxhelperVersion"
implementation "io.github.kyuubiran.ezxhelper:android-utils:$ezxhelperVersion"
}// build.gradle.kts
dependencies {
val ezxhelperVersion = "<version>"
implementation("io.github.kyuubiran.ezxhelper:core:$ezxhelperVersion")
implementation("io.github.kyuubiran.ezxhelper:xposed-api-82:$ezxhelperVersion")
implementation("io.github.kyuubiran.ezxhelper:android-utils:$ezxhelperVersion")
}