Coder Social home page Coder Social logo

arc157 / xposed Goto Github PK

View Code? Open in Web Editor NEW
34.0 1.0 9.0 377 KB

A minimalistic Xposed framework which is based on LSPlant.

License: GNU General Public License v3.0

Java 13.54% CMake 3.87% C++ 62.74% C 17.79% Objective-C++ 0.22% Dockerfile 0.05% Python 1.04% Shell 0.26% Assembly 0.49%
android hook-framework xposed

xposed's Introduction

About

A minimalistic Xposed framework which is based on LSPlant.

Support

Currently, it supports all Android version from 5.0 to 13.0. All main architectures of Android are supported (arm64-v8a, armeabi-v7a, x86, x86_64)

If you're having issue with compatibility, consider downgrading the targetSdkVersion to 28 or below.

Usage

If you are not familiar with the Xposed API, here's a quick example of how to hook onCreate of Activity.java class. You can find the example in MainApplication.

        XposedHelpers.findAndHookMethod(Activity.class, "onCreate", Bundle.class, new XC_MethodReplacement() {
            @Override
            protected Object replaceHookedMethod(MethodHookParam param) throws Throwable {
                Toast.makeText(MainApplication.this, "Hooked!", Toast.LENGTH_LONG).show();
                return XposedBridge.invokeOriginalMethod(param.method, param.thisObject, param.args);
            }
        });

Currently, there is no support for Resource Hooks

Donation

If you appreciate this project, feel free to donate :)

Bitcoin Address: bc1qmu2fqddueu0yw754xfjk2ugh7qrp00msgm4u2w

Litecoin Address: ltc1ql4xv66lkkutj9t5pdq3wqhuvzjw8tgndc0zynp

Ethereum Address: 0xeb12e38Bd62C1e919649fF4D085de71b952c7310

Credits

Dobby

LSPosed

XposedBridge

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.