From 5186bc227dc884179e04a7a052dec1d92b594455 Mon Sep 17 00:00:00 2001 From: wristshot9987 <109638653+wristshot9987@users.noreply.github.com> Date: Fri, 22 Jul 2022 23:03:26 -0700 Subject: [PATCH 1/2] Update README.md --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f8cef0d..9c8dd5c 100644 --- a/README.md +++ b/README.md @@ -2,27 +2,27 @@ -------- ![logo][2] -------- -## Projects are out of date, plese move to: +## Projects are out of date, please move to: > [Whale Hook](https://github.com/asLody/whale) ## What is Legend? -Legend is a **Hook framework** for **Android Development**, it allows you to Hook Java methods **without** ROOT. Even more exciting is that it supports both **Dalvik and Art** environment! +Legend is a **Hook framework** for **Android Development**, as it allows you to Hook Java methods **without** ROOT. Legend supports both **Dalvik and Art** environment! -### 1. What is the good +### 1. The Advantages - Programming more **efficient** - Dynamic debugging -- **HotFix** and needn't reboot app +- **HotFix** and doesn't need to reboot the app - Fast **dump** Dex File in the shell - Software security penetration -- Do some exciting things... +- Does exciting things... -### 2. How to use +### 2. How to use Legend Example 1: **Annotation** type Hook ```java @Hook("android.widget.Toast::show") @@ -44,7 +44,7 @@ public static void Activity_startActivity(Activity thiz, Intent intent) { } ``` #### Notice: -- Write the following code down in where you want to your hooks **enable**. +- Write the following code down in where you want your hooks **enabled**. ```java HookManager.getDefault().applyHooks(YourClass.class); @@ -55,7 +55,7 @@ HookManager.getDefault().applyHooks(YourClass.class); HookManager.getDefault().hookMethod(originMethod, hookMethod); ``` -### 3. Compatibility +### 3. Software Compatibility - [x] Dalvik & Android 4.2 - [x] Dalvik & Android 4.3 - [x] Art & Android 5.0 From 166941a91fbd9cf70f41fd211c7fd64398edfe59 Mon Sep 17 00:00:00 2001 From: wristshot9987 <109638653+wristshot9987@users.noreply.github.com> Date: Fri, 22 Jul 2022 23:04:04 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c8dd5c..2234df1 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Legend is a **Hook framework** for **Android Development**, as it allows you to ### 1. The Advantages -- Programming more **efficient** +- Program more **efficiently** - Dynamic debugging - **HotFix** and doesn't need to reboot the app - Fast **dump** Dex File in the shell