Skip to content

Commit c316186

Browse files
committed
Upgrade version to v1.0.8.
1 parent 68260af commit c316186

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# ShadowHook
22

33
![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
4-
![](https://img.shields.io/badge/release-1.0.7-red.svg?style=flat)
5-
![](https://img.shields.io/badge/Android-4.1%20--%2013-blue.svg?style=flat)
4+
![](https://img.shields.io/badge/release-1.0.8-red.svg?style=flat)
5+
![](https://img.shields.io/badge/Android-4.1%20--%2014-blue.svg?style=flat)
66
![](https://img.shields.io/badge/arch-armeabi--v7a%20%7C%20arm64--v8a-blue.svg?style=flat)
77

88
[**简体中文**](README.zh-CN.md)
@@ -16,7 +16,7 @@ If you need an Android PLT hook library, please move to [ByteHook](https://githu
1616

1717
## Features
1818

19-
* Support Android 4.1 - 13 (API level 16 - 33).
19+
* Support Android 4.1 - 14 (API level 16 - 34).
2020
* Support armeabi-v7a and arm64-v8a.
2121
* Support hook for the whole function, but does not support hook for the middle position of the function.
2222
* Support to specify the hook location by "function address" or "library name + function name".
@@ -49,7 +49,7 @@ android {
4949
}
5050
5151
dependencies {
52-
implementation 'com.bytedance.android:shadowhook:1.0.7'
52+
implementation 'com.bytedance.android:shadowhook:1.0.8'
5353
}
5454
```
5555

README.zh-CN.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# ShadowHook
22

33
![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
4-
![](https://img.shields.io/badge/release-1.0.7-red.svg?style=flat)
5-
![](https://img.shields.io/badge/Android-4.1%20--%2013-blue.svg?style=flat)
4+
![](https://img.shields.io/badge/release-1.0.8-red.svg?style=flat)
5+
![](https://img.shields.io/badge/Android-4.1%20--%2014-blue.svg?style=flat)
66
![](https://img.shields.io/badge/arch-armeabi--v7a%20%7C%20arm64--v8a-blue.svg?style=flat)
77

88
[**English**](README.md)
@@ -16,7 +16,7 @@ ShadowHook 现在被用于 TikTok,抖音,今日头条,西瓜视频,飞
1616

1717
## 特征
1818

19-
* 支持 Android 4.1 - 13 (API level 16 - 33)。
19+
* 支持 Android 4.1 - 14 (API level 16 - 34)。
2020
* 支持 armeabi-v7a 和 arm64-v8a。
2121
* 支持针对函数整体的 hook,不支持对函数中间位置的 hook。
2222
* 支持通过“函数地址”或“库名 + 函数名”的方式指定 hook 位置。
@@ -49,7 +49,7 @@ android {
4949
}
5050
5151
dependencies {
52-
implementation 'com.bytedance.android:shadowhook:1.0.7'
52+
implementation 'com.bytedance.android:shadowhook:1.0.8'
5353
}
5454
```
5555

@@ -245,4 +245,4 @@ BSD 3-Clause License
245245
Copyright (c) 2005-2011 Google Inc.
246246
* [xDL](https://github.com/hexhacking/xDL)
247247
MIT License
248-
Copyright (c) 2020-2021 HexHacking Team
248+
Copyright (c) 2020-2023 HexHacking Team

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ android {
5555

5656
dependencies {
5757
implementation 'androidx.appcompat:appcompat:1.6.1'
58-
implementation 'com.google.android.material:material:1.8.0'
58+
implementation 'com.google.android.material:material:1.10.0'
5959
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
6060

6161
if (rootProject.ext.dependencyOnLocalLibrary) {

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ task clean(type: Delete) {
99

1010
ext {
1111
minSdkVersion = 16
12-
compileSdkVersion = 33
13-
targetSdkVersion = 33
14-
buildToolsVersion = '33.0.2'
12+
compileSdkVersion = 34
13+
targetSdkVersion = 34
14+
buildToolsVersion = '34.0.0'
1515
javaVersion = JavaVersion.VERSION_1_7
1616
ndkVersion = "23.2.8568313"
1717
cmakeVersion = "3.22.1"
1818
abiFilters = "armeabi-v7a,arm64-v8a"
1919
useASAN = false
2020
dependencyOnLocalLibrary = true
21-
shadowhookVersion = "1.0.7"
21+
shadowhookVersion = "1.0.8"
2222

2323
POM_GROUP_ID = "com.bytedance.android"
2424
POM_ARTIFACT_ID = "shadowhook"
25-
POM_VERSION_NAME = "1.0.7"
25+
POM_VERSION_NAME = "1.0.8"
2626

2727
POM_NAME = "shadowhook"
2828
POM_DESCRIPTION = "ShadowHook is an Android inline hook library which supports thumb, arm32 and arm64."

doc/manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If you need an Android PLT hook library, please move to [ByteHook](https://githu
1414

1515
# Features
1616

17-
* Support Android 4.1 - 13 (API level 16 - 33).
17+
* Support Android 4.1 - 14 (API level 16 - 34).
1818
* Support armeabi-v7a and arm64-v8a.
1919
* Support hook for the whole function, but does not support hook for the middle position of the function.
2020
* Support to specify the hook location by "function address" or "library name + function name".

doc/manual.zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ShadowHook 现在被用于 TikTok,抖音,今日头条,西瓜视频,飞
1414

1515
# 特征
1616

17-
* 支持 Android 4.1 - 13 (API level 16 - 33)。
17+
* 支持 Android 4.1 - 14 (API level 16 - 34)。
1818
* 支持 armeabi-v7a 和 arm64-v8a。
1919
* 支持针对函数整体的 hook,不支持对函数中间位置的 hook。
2020
* 支持通过“函数地址”或“库名 + 函数名”的方式指定 hook 位置。

shadowhook/src/main/cpp/include/shadowhook.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include <stdbool.h>
3535
#include <stdint.h>
3636

37-
#define SHADOWHOOK_VERSION "1.0.7"
37+
#define SHADOWHOOK_VERSION "1.0.8"
3838

3939
#define SHADOWHOOK_ERRNO_OK 0
4040
#define SHADOWHOOK_ERRNO_PENDING 1

0 commit comments

Comments
 (0)