mirror of
https://github.com/LSPosed/LSPlant.git
synced 2025-05-04 20:42:02 +08:00
Update README.md
This commit is contained in:
parent
c820d372af
commit
83cdee50eb
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@ -1,6 +1,10 @@
|
||||
name: Build
|
||||
|
||||
on: [ push, pull_request ]
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- 'README.md'
|
||||
pull_request:
|
||||
|
||||
|
||||
jobs:
|
||||
|
18
README.md
18
README.md
@ -3,6 +3,8 @@
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
LSPlant is an Android ART hook library, providing Java method hook/unhook and inline deoptimization.
|
||||
|
||||
@ -20,6 +22,22 @@ https://lsposed.org/LSPlant/namespacelsplant.html
|
||||
|
||||
## Quick Start
|
||||
|
||||
```gradle
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "org.lsposed.lsplant:lsplant:1.0"
|
||||
}
|
||||
|
||||
android {
|
||||
buildFeatures {
|
||||
prefab true
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### 1. Init LSPlant within JNI_OnLoad
|
||||
|
||||
Initialize LSPlant for the proceeding hook. It mainly prefetch needed symbols and hook some functions.
|
||||
|
Loading…
x
Reference in New Issue
Block a user