Skip to content

Commit

Permalink
Upgrade to 1.0.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
caikelun committed Dec 6, 2022
1 parent ad6c86e commit a059c62
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# ByteHook

![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
![](https://img.shields.io/badge/release-1.0.6-red.svg?style=flat)
![](https://img.shields.io/badge/release-1.0.7-red.svg?style=flat)
![](https://img.shields.io/badge/Android-4.1%20--%2013-blue.svg?style=flat)
![](https://img.shields.io/badge/arch-armeabi--v7a%20%7C%20arm64--v8a%20%7C%20x86%20%7C%20x86__64-blue.svg?style=flat)

[README 中文版](README.zh-CN.md)

**ByteHook** is an Android PLT hook library which supports armeabi-v7a, arm64-v8a, x86 and x86_64.

Most of ByteDance's Android apps(including Douyin, Toutiao, Xigua Video) use ByteHook as the PLT hook solution in production.
ByteHook is now used in TikTok, Douyin, Toutiao, Xigua Video, Lark.

If you need an Android inline hook library, please move to [ShadowHook](https://github.com/bytedance/android-inline-hook).

Expand Down Expand Up @@ -55,7 +55,7 @@ android {
}
dependencies {
implementation 'com.bytedance:bytehook:1.0.6'
implementation 'com.bytedance:bytehook:1.0.7'
}
```

Expand Down
6 changes: 3 additions & 3 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# ByteHook

![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
![](https://img.shields.io/badge/release-1.0.6-red.svg?style=flat)
![](https://img.shields.io/badge/release-1.0.7-red.svg?style=flat)
![](https://img.shields.io/badge/Android-4.1%20--%2013-blue.svg?style=flat)
![](https://img.shields.io/badge/arch-armeabi--v7a%20%7C%20arm64--v8a%20%7C%20x86%20%7C%20x86__64-blue.svg?style=flat)

[README English Version](README.md)

**ByteHook** 是一个 Android PLT hook 库,它支持 armeabi-v7a, arm64-v8a, x86 和 x86_64。

字节跳动的大多数 Android app(包括抖音,今日头条,西瓜视频)在线上环境中使用了 ByteHook 作为 PLT hook 方案
ByteHook 现在被用于 TikTok,抖音,今日头条, 西瓜视频,飞书中

如果你需要的是 Android inline hook 库,请移步到 [ShadowHook](https://github.com/bytedance/android-inline-hook)

Expand Down Expand Up @@ -55,7 +55,7 @@ android {
}
dependencies {
implementation 'com.bytedance:bytehook:1.0.6'
implementation 'com.bytedance:bytehook:1.0.7'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ext {

POM_GROUP_ID = "com.bytedance"
POM_ARTIFACT_ID = "bytehook"
POM_VERSION_NAME = "1.0.6"
POM_VERSION_NAME = "1.0.7"

POM_NAME = "bytehook"
POM_DESCRIPTION = "ByteHook is an Android PLT hook library which supports armeabi-v7a, arm64-v8a, x86 and x86_64."
Expand Down
4 changes: 2 additions & 2 deletions bytehook_sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ android {

dependencies {
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.6.1'
implementation 'com.google.android.material:material:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'

if (rootProject.ext.dependencyOnLocalLibrary) {
implementation project(':bytehook')
} else {
implementation 'com.bytedance:bytehook:1.0.6'
implementation 'com.bytedance:bytehook:1.0.7'
}
}

Expand Down

0 comments on commit a059c62

Please sign in to comment.