mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2024-11-10 01:02:22 +01:00
1.4 KiB
1.4 KiB
💪 Advanced APIs
A handful of APIs are available to make patch development easier and more efficient.
📙 Overview
- 👹 Create new mutable classes with
context.proxy(ClassDef)
- 🔍 Find and proxy existing classes with
BytecodeContext.findClass(Predicate)
- 🏃 Easily access referenced methods recursively by index with
BytecodeContext.toMethodWalker(Method)
- 🔨 Make use of extension functions from
BytecodeUtils
andResourceUtils
with certain applications (Available in ReVanced Patches) - 💾 Read and write (decoded) resources with
ResourceContext.get(Path, Boolean)
- 📃 Read and write DOM files using
ResourceContext.document
- 🔧 Equip patches with configurable options using
Patch.options
🧰 APIs
Warning
This section is still under construction and may be incomplete.
🎉 Afterword
ReVanced Patcher is a powerful library to patch Android applications, offering a rich set of APIs to develop patches that outlive app updates. Patches make up ReVanced; without you, the community of patch developers, ReVanced would not be what it is today. We hope that this documentation has been helpful to you and are excited to see what you will create with ReVanced Patcher. If you have any questions or need help, talk to us on one of our platforms linked on revanced.app or open an issue in case of a bug or feature request,
ReVanced