Skip to content

Commit cff0aaa

Browse files
committed
docs: 更新 API 文档、README
1 parent c73cd0b commit cff0aaa

File tree

12 files changed

+36
-36
lines changed

12 files changed

+36
-36
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

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

@@ -97,38 +97,38 @@
9797
```gradle
9898
9999
// DevApp - Android 工具类库
100-
implementation 'io.github.afkt:DevAppX:2.3.5'
100+
implementation 'io.github.afkt:DevAppX:2.3.6'
101101
102102
// DevAssist - 封装逻辑代码, 实现多个快捷功能辅助类、以及 Engine 兼容框架等
103-
implementation 'io.github.afkt:DevAssist:1.3.2'
103+
implementation 'io.github.afkt:DevAssist:1.3.3'
104104
105105
// DevBase - Base ( Activity、Fragment )、MVP、ViewBinding、ContentLayout 基类库
106-
implementation 'io.github.afkt:DevBase:1.1.0'
106+
implementation 'io.github.afkt:DevBase:1.1.1'
107107
108108
// DevBaseMVVM - MVVM ( ViewDataBinding + ViewModel ) 基类库
109-
implementation 'io.github.afkt:DevBaseMVVM:1.0.8'
109+
implementation 'io.github.afkt:DevBaseMVVM:1.0.9'
110110
111111
// DevEngine - 第三方框架解耦、一键替换第三方库、同类库多 Engine 组件化混合使用
112-
implementation 'io.github.afkt:DevEngine:1.0.4'
112+
implementation 'io.github.afkt:DevEngine:1.0.5'
113113
114114
// DevHttpCapture - OkHttp 抓包工具库
115-
implementation 'io.github.afkt:DevHttpCapture:1.0.9'
115+
implementation 'io.github.afkt:DevHttpCapture:1.1.0'
116116
117117
// DevHttpCaptureCompiler - OkHttp 抓包工具库 ( 可视化功能 )
118-
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.0.9'
119-
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.0.9'
118+
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.0'
119+
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.0'
120120
121121
// DevWidget - 自定义 View UI 库
122-
implementation 'io.github.afkt:DevWidgetX:1.1.6'
122+
implementation 'io.github.afkt:DevWidgetX:1.1.7'
123123
124124
// DevEnvironment - Android 环境配置切换库
125-
implementation 'io.github.afkt:DevEnvironment:1.0.8'
126-
debugAnnotationProcessor 'io.github.afkt:DevEnvironmentCompiler:1.0.8' // kaptDebug
127-
releaseAnnotationProcessor 'io.github.afkt:DevEnvironmentCompilerRelease:1.0.8' // kaptRelease
128-
//annotationProcessor 'io.github.afkt:DevEnvironmentCompiler:1.0.8' // kapt
125+
implementation 'io.github.afkt:DevEnvironment:1.0.9'
126+
debugAnnotationProcessor 'io.github.afkt:DevEnvironmentCompiler:1.0.9' // kaptDebug
127+
releaseAnnotationProcessor 'io.github.afkt:DevEnvironmentCompilerRelease:1.0.9' // kaptRelease
128+
//annotationProcessor 'io.github.afkt:DevEnvironmentCompiler:1.0.9' // kapt
129129
130130
// DevJava - Java 工具类库 ( 不依赖 android api )
131-
implementation 'io.github.afkt:DevJava:1.4.2' // 用于纯 Java 开发,如果依赖了 DevApp 则不需要依赖 DevJava
131+
implementation 'io.github.afkt:DevJava:1.4.3' // 用于纯 Java 开发,如果依赖了 DevApp 则不需要依赖 DevJava
132132
```
133133

134134
## [APK Demo](https://github.com/afkT/Resources/tree/main/APK)

lib/DevApp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//implementation 'com.afkt:DevApp:1.9.4'
77
88
// AndroidX ( Maven Central )
9-
implementation 'io.github.afkt:DevAppX:2.3.5'
9+
implementation 'io.github.afkt:DevAppX:2.3.6'
1010
```
1111

1212
## 目录结构

lib/DevAssist/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
## Gradle
33

44
```gradle
5-
implementation 'io.github.afkt:DevAssist:1.3.2'
5+
implementation 'io.github.afkt:DevAssist:1.3.3'
66
```
77

88
## 目录结构

lib/DevBase/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
## Gradle
33

44
```gradle
5-
implementation 'io.github.afkt:DevBase:1.1.0'
5+
implementation 'io.github.afkt:DevBase:1.1.1'
66
```
77

88
## 目录结构

lib/DevBaseMVVM/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
## Gradle
33

44
```gradle
5-
implementation 'io.github.afkt:DevBaseMVVM:1.0.8'
5+
implementation 'io.github.afkt:DevBaseMVVM:1.0.9'
66
```
77

88
## 目录结构

lib/DevEngine/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
## Gradle
33

44
```gradle
5-
implementation 'io.github.afkt:DevEngine:1.0.4'
5+
implementation 'io.github.afkt:DevEngine:1.0.5'
66
```
77

88
## 目录结构

lib/DevHttpCapture/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
## Gradle
33

44
```gradle
5-
implementation 'io.github.afkt:DevHttpCapture:1.0.9'
5+
implementation 'io.github.afkt:DevHttpCapture:1.1.0'
66
```
77

88
## 目录结构

lib/DevJava/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
## Gradle
33

44
```gradle
5-
implementation 'io.github.afkt:DevJava:1.4.2'
5+
implementation 'io.github.afkt:DevJava:1.4.3'
66
```
77

88
## 目录结构

lib/DevWidget/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
```gradle
99
// AndroidX
10-
implementation 'io.github.afkt:DevWidgetX:1.1.6'
10+
implementation 'io.github.afkt:DevWidgetX:1.1.7'
1111
```
1212

1313
## README

lib/DevWidget/README_API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
```gradle
55
// AndroidX
6-
implementation 'io.github.afkt:DevWidgetX:1.1.6'
6+
implementation 'io.github.afkt:DevWidgetX:1.1.7'
77
```
88

99
## 目录结构

lib/Environment/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,26 +50,26 @@ DevEnvironment 是一个 Android 环境配置切换库,运用 Java 注解、AP
5050

5151
module | DevEnvironment | DevEnvironmentCompiler | DevEnvironmentCompilerRelease
5252
:---:|:---:|:---:|:---:
53-
version | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.8-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt) | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.8-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt) | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.8-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt)
53+
version | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.9-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt) | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.9-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt) | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.9-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt)
5454

5555

5656
### Gradle
5757

5858
```groovy
5959
dependencies {
6060
// Java
61-
implementation 'io.github.afkt:DevEnvironment:1.0.8'
62-
debugAnnotationProcessor 'io.github.afkt:DevEnvironmentCompiler:1.0.8'
63-
releaseAnnotationProcessor 'io.github.afkt:DevEnvironmentCompilerRelease:1.0.8'
61+
implementation 'io.github.afkt:DevEnvironment:1.0.9'
62+
debugAnnotationProcessor 'io.github.afkt:DevEnvironmentCompiler:1.0.9'
63+
releaseAnnotationProcessor 'io.github.afkt:DevEnvironmentCompilerRelease:1.0.9'
6464
// 如果需要 Release 包,支持通过后台数据动态设置配置信息 则使用 debug compiler lib
65-
// annotationProcessor 'io.github.afkt:DevEnvironmentCompiler:1.0.8'
65+
// annotationProcessor 'io.github.afkt:DevEnvironmentCompiler:1.0.9'
6666
6767
// Kotlin
68-
implementation 'io.github.afkt:DevEnvironment:1.0.8'
69-
kaptDebug 'io.github.afkt:DevEnvironmentCompiler:1.0.8'
70-
kaptRelease 'io.github.afkt:DevEnvironmentCompilerRelease:1.0.8'
68+
implementation 'io.github.afkt:DevEnvironment:1.0.9'
69+
kaptDebug 'io.github.afkt:DevEnvironmentCompiler:1.0.9'
70+
kaptRelease 'io.github.afkt:DevEnvironmentCompilerRelease:1.0.9'
7171
// 如果需要 Release 包,支持通过后台数据动态设置配置信息 则使用 debug compiler lib
72-
// kapt 'io.github.afkt:DevEnvironmentCompiler:1.0.8'
72+
// kapt 'io.github.afkt:DevEnvironmentCompiler:1.0.9'
7373
}
7474
```
7575

lib/HttpCapture/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414

1515
module | DevHttpCapture | DevHttpCaptureCompiler | DevHttpCaptureCompilerRelease
1616
:---:|:---:|:---:|:---:
17-
version | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.9-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt) | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.9-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt) | [![MavenCentral](https://img.shields.io/badge/Maven-1.0.9-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt)
17+
version | [![MavenCentral](https://img.shields.io/badge/Maven-1.1.0-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt) | [![MavenCentral](https://img.shields.io/badge/Maven-1.1.0-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt) | [![MavenCentral](https://img.shields.io/badge/Maven-1.1.0-brightgreen.svg)](https://search.maven.org/search?q=io.github.afkt)
1818

1919

2020
### Gradle
2121

2222
```groovy
2323
dependencies {
24-
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.0.9'
25-
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.0.9'
24+
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.0'
25+
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.0'
2626
}
2727
```
2828

0 commit comments

Comments
 (0)