HolyShot / FreeReflection

A library that lets you use reflection without any restriction above Android P

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FreeReflection

FreeReflection is a library that lets you use reflection without any restriction above Android P (includes Q and R).

Usage

  1. Add dependency to your project(jcenter):
implementation 'me.weishu:free_reflection:3.0.1'
  1. Add one line to your Application.attachBaseContext :
@Override
protected void attachBaseContext(Context base) {
    super.attachBaseContext(base);
    Reflection.unseal(base);
}

Then you can use the reflection API normally, all the restrictions are gone. Enjoy yourself :)

Under the hood

Donations

If you like this project, buy me a cup of coffee! :)

BitCoin: 39Wst8oL74pRP2vKPkPihH6RFQF4hWoBqU

License

MIT License

About

A library that lets you use reflection without any restriction above Android P

License:MIT License


Languages

Language:C++ 49.9%Language:Java 43.3%Language:CMake 6.8%