Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangyiwang committed Sep 20, 2019
1 parent 7e73fa0 commit 74978b6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# DroidAssist ![license](http://img.shields.io/badge/license-Apache2.0-brightgreen.svg?style=flat) ![Release Version](https://img.shields.io/badge/release-1.0.10-blue.svg)
# DroidAssist ![license](http://img.shields.io/badge/license-Apache2.0-brightgreen.svg?style=flat) ![Release Version](https://img.shields.io/badge/release-1.1.0-blue.svg)
----------
`DroidAssist` 是一个轻量级的 Android 字节码编辑插件,基于 `Javassist` 对字节码操作,根据 xml 配置处理 class 文件,以达到对 class 文件进行动态修改的效果。和其他 AOP 方案不同,DroidAssist 提供了一种更加轻量,简单易用,无侵入,可配置化的字节码操作方式,你不需要 Java 字节码的相关知识,只需要在 Xml 插件配置中添加简单的 Java 代码即可实现类似 AOP 的功能,同时不需要引入其他额外的依赖。

Expand Down Expand Up @@ -29,7 +29,7 @@ DroidAssist 适用于 `Android Studio` 工程 `application model` 或者 `librar

```groovy
dependencies {
classpath "com.didichuxing.tools:droidassist:1.0.10"
classpath "com.didichuxing.tools:droidassist:1.1.0"
}
```

Expand Down
4 changes: 2 additions & 2 deletions README_EN.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# DroidAssist ![license](http://img.shields.io/badge/license-Apache2.0-brightgreen.svg?style=flat) ![Release Version](https://img.shields.io/badge/release-1.0.10-blue.svg)
# DroidAssist ![license](http://img.shields.io/badge/license-Apache2.0-brightgreen.svg?style=flat) ![Release Version](https://img.shields.io/badge/release-1.1.0-blue.svg)

`DroidAssist` is a lightweight Android Studio gradle plugin based on Javassist for editing bytecode in Android. Unlike other AOP solutions, DroidAssist provides a more lightweight, easy-to-use, non-intrusive, configurable bytecode operation. Even without any Java bytecode knowledge, developers can modify a class file dynamically by editing xml plugin configuration only. You can use AOP-style functionality by adding simple Java code without introducing additional dependencies.

Expand All @@ -19,7 +19,7 @@ DroidAssist is available for application model or library model in Android Studi

```groovy
dependencies {
classpath "com.didichuxing.tools:droidassist:1.0.10"
classpath "com.didichuxing.tools:droidassist:1.1.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion plugin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
GROUP_ID=com.didichuxing.tools
ARTIFACT_ID=droidassist
VERSION=1.0.10
VERSION=1.1.0

0 comments on commit 74978b6

Please sign in to comment.