Skip to content

Commit 2efd125

Browse files
committed
Bump version
1 parent 3186d45 commit 2efd125

File tree

3 files changed

+7
-35
lines changed

3 files changed

+7
-35
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
What is it?
77
-----------
88

9-
Epic is the continuation of [Dexposed](https://github.com/alibaba/dexposed) on ART (Supports 4.0 ~ 10.0).
9+
Epic is the continuation of [Dexposed](https://github.com/alibaba/dexposed) on ART (Supports 5.0 ~ 11).
1010

1111
> Dexposed is a powerful yet non-invasive runtime [AOP (Aspect-oriented Programming)](http://en.wikipedia.org/wiki/Aspect-oriented_programming) framework
1212
for Android app development, based on the work of open-source [Xposed](https://github.com/rovo89/Xposed) [framework](https://github.com/rovo89/XposedBridge) project.
@@ -36,7 +36,7 @@ Directly add epic aar to your project as compile libraries, Gradle dependency li
3636

3737
```groovy
3838
dependencies {
39-
compile 'me.weishu:epic:0.6.0'
39+
compile 'me.weishu:epic:0.11.0'
4040
}
4141
```
4242

README_cn.md

Lines changed: 4 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 简介
22

3-
Epic 是一个在虚拟机层面、以 Java Method 为粒度的 **运行时** AOP Hook 框架。简单来说,Epic 就是 ART 上的 [Dexposed](https://github.com/alibaba/dexposed)(支持 Android 4.0 ~ 10.0)。它可以拦截本进程内部几乎任意的 Java 方法调用,可用于实现 AOP 编程、运行时插桩、性能分析、安全审计等。
3+
Epic 是一个在虚拟机层面、以 Java Method 为粒度的 **运行时** AOP Hook 框架。简单来说,Epic 就是 ART 上的 [Dexposed](https://github.com/alibaba/dexposed)(支持 Android 5.0 ~ 11)。它可以拦截本进程内部几乎任意的 Java 方法调用,可用于实现 AOP 编程、运行时插桩、性能分析、安全审计等。
44

55
Epic 被 [VirtualXposed](https://github.com/android-hacker/VirtualXposed) 以及 [太极](https://www.coolapk.com/apk/me.weishu.exp) 使用,用来实现非 Root 场景下的 Xposed 功能,已经经过了相当广泛的验证。
66

@@ -14,7 +14,7 @@ Epic 被 [VirtualXposed](https://github.com/android-hacker/VirtualXposed) 以及
1414

1515
```groovy
1616
dependencies {
17-
compile 'me.weishu:epic:0.8.0-c'
17+
compile 'me.weishu:epic:0.11.0'
1818
}
1919
```
2020

@@ -78,36 +78,8 @@ DexposedBridge.findAndHookMethod(DexFile.class, "loadDex", String.class, String.
7878

7979
## 支持情况
8080

81-
目前 Epic 支持 Android 4.0 ~ 10.0 的 Thumb-2/ARM64 指令集。本项目被 [VirtualXposed](https://github.com/android-hacker/VirtualXposed)[太极](http://taichi.cool) 以及大量企业级用户使用,经过了数千万用户的验证,已经被证明非常稳定。目前,手机 QQ 已经在产品中使用 Epic。
82-
83-
Android 版本支持情况:
84-
85-
Runtime | Android Version | Support
86-
------ | --------------- | --------
87-
Dalvik | 2.2 | Not Test
88-
Dalvik | 2.3 | Yes
89-
Dalvik | 3.0 | No
90-
Dalvik | 4.0-4.4 | Yes
91-
ART | L (5.0) | Yes
92-
ART | L MR1 (5.1) | Yes
93-
ART | M (6.0) | Yes
94-
ART | N (7.0) | Yes
95-
ART | N MR1 (7.1) | Yes
96-
ART | O (8.0) | Yes
97-
ART | O MR1(8.1) | Yes
98-
ART | P (9.0) | Yes
99-
ART | Q (10.0 beta) | Yes
100-
101-
指令集支持情况:
102-
103-
Runtime | Arch | Support
104-
-------- | ------------ | --------
105-
Dalvik | All | Yes
106-
ART | Thumb-2 | Yes
107-
ART | ARM64 | Yes
108-
ART | ARM32 | Yes
109-
ART | x86/x86_64 | No
110-
ART | mips | No
81+
目前 Epic 支持 Android 5.0 ~ 11 的 Thumb-2/ARM64 指令集,arm32/x86/x86_64/mips/mips64 不支持。本项目被 [VirtualXposed](https://github.com/android-hacker/VirtualXposed)[太极](http://taichi.cool) 以及大量企业级用户使用,经过了数千万用户的验证,已经被证明非常稳定。目前,手机 QQ 已经在产品中使用 Epic。
82+
11183

11284
## 已知问题
11385

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ publish {
5252
userOrg = 'twsxtd'//
5353
groupId = 'me.weishu'
5454
artifactId = 'epic'
55-
publishVersion = '0.8.1-c'
55+
publishVersion = '0.11.0'
5656
desc = 'Android Java AOP Method Hook (Dexposed on ART)'
5757
website = 'https://github.com/tiann/epic'
5858
}

0 commit comments

Comments
 (0)