Skip to content

Commit 3273a7c

Browse files
committed
Upgrade version to 1.0.5.
1 parent df8f253 commit 3273a7c

File tree

4 files changed

+6
-16
lines changed

4 files changed

+6
-16
lines changed

README.md

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

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

@@ -55,7 +55,7 @@ android {
5555
}
5656
5757
dependencies {
58-
implementation 'com.bytedance.android:shadowhook:1.0.4'
58+
implementation 'com.bytedance.android:shadowhook:1.0.5'
5959
}
6060
```
6161

README.zh-CN.md

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

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

@@ -55,7 +55,7 @@ android {
5555
}
5656
5757
dependencies {
58-
implementation 'com.bytedance.android:shadowhook:1.0.4'
58+
implementation 'com.bytedance.android:shadowhook:1.0.5'
5959
}
6060
```
6161

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ ext {
1818
abiFilters = "armeabi-v7a,arm64-v8a"
1919
useASAN = false
2020
dependencyOnLocalLibrary = true
21-
shadowhookVersion = "1.0.5-alpha.0"
21+
shadowhookVersion = "1.0.5"
2222

2323
POM_GROUP_ID = "com.bytedance.android"
2424
POM_ARTIFACT_ID = "shadowhook"
25-
POM_VERSION_NAME = "1.0.5-alpha.0"
25+
POM_VERSION_NAME = "1.0.5"
2626

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

systest/build.gradle

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,3 @@ dependencies {
6262
implementation 'com.bytedance.android:shadowhook:' + rootProject.ext.shadowhookVersion
6363
}
6464
}
65-
66-
if (rootProject.ext.dependencyOnLocalLibrary) {
67-
tasks.whenTaskAdded { task ->
68-
if (task.name == 'preDebugBuild') {
69-
task.dependsOn(':shadowhook:prefabDebugConfigurePackage')
70-
} else if (task.name == 'preReleaseBuild') {
71-
task.dependsOn(':shadowhook:prefabReleaseConfigurePackage')
72-
}
73-
}
74-
}

0 commit comments

Comments
 (0)