Skip to content

Commit

Permalink
1.更新版本信息、README.md
Browse files Browse the repository at this point in the history
Former-commit-id: a85d4ba
  • Loading branch information
afkT committed Dec 20, 2021
1 parent e2d7489 commit d69c23b
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 16 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[![GitHub](https://img.shields.io/badge/GitHub-afkT-blue.svg)](https://github.com/afkT)
[![GitHub license](https://img.shields.io/github/license/afkT/DevUtils.svg)](https://github.com/afkT/DevUtils/blob/master/LICENSE)
[![MavenCentral](https://img.shields.io/badge/DevUtils-2.3.0-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt)
[![MavenCentral](https://img.shields.io/badge/DevUtils-2.3.1-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt)
[![API](https://img.shields.io/badge/API-14%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=14)
[![Utils](https://img.shields.io/badge/utils-200+-ff69b4.svg)](https://github.com/afkT/DevUtils/blob/master/lib/DevApp/README.md)

Expand Down Expand Up @@ -95,10 +95,10 @@
```gradle
// DevApp Android 工具类库
implementation 'io.github.afkt:DevAppX:2.3.0'
implementation 'io.github.afkt:DevAppX:2.3.1'
// DevAssist 快捷功能辅助类库
implementation 'io.github.afkt:DevAssist:1.2.8'
implementation 'io.github.afkt:DevAssist:1.2.9'
// DevBase Base ( Activity、Fragment )、MVP、ViewBinding、ContentLayout 基类库
implementation 'io.github.afkt:DevBase:1.0.7'
Expand All @@ -107,14 +107,14 @@ implementation 'io.github.afkt:DevBase:1.0.7'
implementation 'io.github.afkt:DevBaseMVVM:1.0.5'
// DevEngine 第三方框架解耦、一键替换第三方库
implementation 'io.github.afkt:DevEngine:1.0.0'
implementation 'io.github.afkt:DevEngine:1.0.1'
// DevHttpCapture OKHttp 抓包工具库
implementation 'io.github.afkt:DevHttpCapture:1.0.4'
implementation 'io.github.afkt:DevHttpCapture:1.0.5'
// DevHttpCaptureCompiler OKHttp 抓包工具库 ( 可视化功能 )
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.0.4'
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.0.4'
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.0.5'
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.0.5'
// DevWidget 自定义 View UI 库
implementation 'io.github.afkt:DevWidgetX:1.1.2'
Expand All @@ -126,7 +126,7 @@ releaseAnnotationProcessor 'io.github.afkt:DevEnvironmentCompilerRelease:1.0.5'
//annotationProcessor 'io.github.afkt:DevEnvironmentCompiler:1.0.5' // kapt
// DevJava Java 工具类库 ( 不依赖 android api )
implementation 'io.github.afkt:DevJava:1.3.7' // 用于纯 Java 开发,如果依赖了 DevApp 则不需要依赖 DevJava
implementation 'io.github.afkt:DevJava:1.3.8' // 用于纯 Java 开发,如果依赖了 DevApp 则不需要依赖 DevJava
```

## [APK Demo](https://github.com/afkT/Resources/tree/main/APK)
Expand Down
2 changes: 1 addition & 1 deletion lib/DevApp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//implementation 'com.afkt:DevApp:1.9.4'
// AndroidX ( Maven Central )
implementation 'io.github.afkt:DevAppX:2.3.0'
implementation 'io.github.afkt:DevAppX:2.3.1'
```

## 目录结构
Expand Down
6 changes: 5 additions & 1 deletion lib/DevAssist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Gradle

```gradle
implementation 'io.github.afkt:DevAssist:1.2.8'
implementation 'io.github.afkt:DevAssist:1.2.9'
```

## 目录结构
Expand Down Expand Up @@ -458,20 +458,24 @@ implementation 'io.github.afkt:DevAssist:1.2.8'
| setCurrent | 设置当前数据 |
| getListener | 获取方法事件触发接口 |
| setListener | 设置方法事件触发接口 |
| cleanCurrent | 清空当前数据 |
| reset | 重置操作 |
| clearBack | 清空回退栈数据 |
| sizeBack | 获取回退栈数据条数 |
| isEmptyBack | 是否不存在回退栈数据 |
| canGoBack | 是否能够执行回退操作 |
| addBack | 添加到回退栈 |
| getBack | 获取上一条回退栈数据 |
| goBack | 前往上一条回退栈数据 |
| toStringBack | 进行回退栈数据顺序拼接字符串 |
| clearForward | 清空前进栈数据 |
| sizeForward | 获取前进栈数据条数 |
| isEmptyForward | 是否不存在前进栈数据 |
| canGoForward | 是否能够执行前进操作 |
| addForward | 添加到前进栈 |
| getForward | 获取下一条前进栈数据 |
| goForward | 前往下一条前进栈数据 |
| toStringForward | 进行前进栈数据顺序拼接字符串 |
| accept | 是否允许添加 |
| changeCurrent | 当前数据改变通知 |
| clear | 清空数据回调 |
Expand Down
2 changes: 1 addition & 1 deletion lib/DevEngine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Gradle

```gradle
implementation 'io.github.afkt:DevEngine:1.0.0'
implementation 'io.github.afkt:DevEngine:1.0.1'
```

## 目录结构
Expand Down
2 changes: 1 addition & 1 deletion lib/DevHttpCapture/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Gradle

```gradle
implementation 'io.github.afkt:DevHttpCapture:1.0.4'
implementation 'io.github.afkt:DevHttpCapture:1.0.5'
```

## 目录结构
Expand Down
2 changes: 1 addition & 1 deletion lib/DevJava/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Gradle

```gradle
implementation 'io.github.afkt:DevJava:1.3.7'
implementation 'io.github.afkt:DevJava:1.3.8'
```

## 目录结构
Expand Down
6 changes: 3 additions & 3 deletions lib/HttpCapture/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@

module | DevHttpCapture | DevHttpCaptureCompiler | DevHttpCaptureCompilerRelease
:---:|:---:|:---:|:---:
version | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.4-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt) | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.4-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt) | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.4-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt)
version | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.5-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt) | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.5-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt) | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.5-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt)


### Gradle

```groovy
dependencies {
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.0.4'
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.0.4'
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.0.5'
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.0.5'
}
```

Expand Down

0 comments on commit d69c23b

Please sign in to comment.