Skip to content

Commit

Permalink
docs: 更新 Dev 系列库所有版本及 API 文档
Browse files Browse the repository at this point in the history
build: 更新所有第三方库最新依赖版本信息 ( 2022-09-18 )
  • Loading branch information
afkT committed Sep 17, 2022
1 parent 80e047a commit 31bfd4b
Show file tree
Hide file tree
Showing 29 changed files with 162 additions and 66 deletions.
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<a href="https://github.com/afkT/DevUtils/blob/master/LICENSE"><img alt="License" src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"/></a>
<a href="https://search.maven.org/search?q=io.github.afkt"><img alt="Version" src="https://img.shields.io/badge/Maven-Dev-5776E0.svg"/></a>
<a href="https://android-arsenal.com/api?level=14"><img alt="API" src="https://img.shields.io/badge/API-14%2B-brightgreen.svg?style=flat"/></a>
<a href="https://search.maven.org/search?q=io.github.afkt"><img alt="Version" src="https://img.shields.io/badge/DevUtils-2.4.1-yellow.svg"/></a>
<a href="https://search.maven.org/search?q=io.github.afkt"><img alt="Version" src="https://img.shields.io/badge/DevUtils-2.4.2-yellow.svg"/></a>
<a href="https://github.com/afkT/DevUtils/blob/master/lib/DevApp/README.md"><img alt="Utils" src="https://img.shields.io/badge/Utils-300+-critical.svg"/></a>
</p>

Expand Down Expand Up @@ -148,44 +148,44 @@ DevUtils 是一个 Android 工具库,主要根据不同功能模块,封装
```gradle
// DevApp - Android 工具类库
implementation 'io.github.afkt:DevAppX:2.4.1'
implementation 'io.github.afkt:DevAppX:2.4.2'
// DevAssist - 封装逻辑代码, 实现多个快捷功能辅助类、以及 Engine 兼容框架等
implementation 'io.github.afkt:DevAssist:1.3.7'
implementation 'io.github.afkt:DevAssist:1.3.8'
// DevBase - Base ( Activity、Fragment )、MVP、ViewBinding、ContentLayout 基类库
implementation 'io.github.afkt:DevBase:1.1.3'
implementation 'io.github.afkt:DevBase:1.1.4'
// DevBaseMVVM - MVVM ( ViewDataBinding + ViewModel ) 基类库
implementation 'io.github.afkt:DevBaseMVVM:1.1.1'
implementation 'io.github.afkt:DevBaseMVVM:1.1.2'
// DevEngine - 第三方框架解耦、一键替换第三方库、同类库多 Engine 组件化混合使用
implementation 'io.github.afkt:DevEngine:1.0.9'
implementation 'io.github.afkt:DevEngine:1.1.0'
// DevHttpCapture - OkHttp 抓包工具库
implementation 'io.github.afkt:DevHttpCapture:1.1.2'
implementation 'io.github.afkt:DevHttpCapture:1.1.3'
// DevHttpCaptureCompiler - OkHttp 抓包工具库 ( 可视化功能 )
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.2'
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.2'
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.3'
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.3'
// DevHttpManager - OkHttp 管理库 ( Retrofit 多 BaseUrl 管理、Progress 监听 )
implementation 'io.github.afkt:DevHttpManager:1.0.2'
implementation 'io.github.afkt:DevHttpManager:1.0.3'
// DevRetrofit - Retrofit + Kotlin Coroutines 封装
implementation 'io.github.afkt:DevRetrofit:1.0.1'
implementation 'io.github.afkt:DevRetrofit:1.0.2'
// DevWidget - 自定义 View UI 库
implementation 'io.github.afkt:DevWidgetX:1.1.9'
implementation 'io.github.afkt:DevWidgetX:1.2.0'
// DevEnvironment - Android 环境配置切换库
implementation 'io.github.afkt:DevEnvironment:1.1.1'
debugAnnotationProcessor 'io.github.afkt:DevEnvironmentCompiler:1.1.1' // kaptDebug
releaseAnnotationProcessor 'io.github.afkt:DevEnvironmentCompilerRelease:1.1.1' // kaptRelease
//annotationProcessor 'io.github.afkt:DevEnvironmentCompiler:1.1.1' // kapt
implementation 'io.github.afkt:DevEnvironment:1.1.2'
debugAnnotationProcessor 'io.github.afkt:DevEnvironmentCompiler:1.1.2' // kaptDebug
releaseAnnotationProcessor 'io.github.afkt:DevEnvironmentCompilerRelease:1.1.2' // kaptRelease
//annotationProcessor 'io.github.afkt:DevEnvironmentCompiler:1.1.2' // kapt
// DevJava - Java 工具类库 ( 不依赖 android api )
implementation 'io.github.afkt:DevJava:1.4.7' // 用于纯 Java 开发,如果依赖了 DevApp 则不需要依赖 DevJava
implementation 'io.github.afkt:DevJava:1.4.8' // 用于纯 Java 开发,如果依赖了 DevApp 则不需要依赖 DevJava
```


Expand Down
54 changes: 27 additions & 27 deletions file/gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,56 +26,56 @@ ext {
// ===========

// DevApp - Android 工具类库
dev_app_versionCode : 241,
dev_app_versionName : "2.4.1",
dev_app_versionCode : 242,
dev_app_versionName : "2.4.2",

// DevAssist - 封装逻辑代码, 实现多个快捷功能辅助类、以及 Engine 兼容框架等
dev_assist_versionCode : 137,
dev_assist_versionName : "1.3.7",
dev_assist_versionCode : 138,
dev_assist_versionName : "1.3.8",

// DevBase - Base ( Activity、Fragment )、MVP、ViewBinding、ContentLayout 基类库
dev_base_versionCode : 113,
dev_base_versionName : "1.1.3",
dev_base_versionCode : 114,
dev_base_versionName : "1.1.4",

// DevBaseMVVM - MVVM ( ViewDataBinding + ViewModel ) 基类库
dev_base_mvvm_versionCode : 111,
dev_base_mvvm_versionName : "1.1.1",
dev_base_mvvm_versionCode : 112,
dev_base_mvvm_versionName : "1.1.2",

// DevMVVM - DataBinding 工具类库
dev_mvvm_versionCode : 100,
dev_mvvm_versionName : "1.0.0",

// DevEngine - 第三方框架解耦、一键替换第三方库、同类库多 Engine 组件化混合使用
dev_engine_versionCode : 109,
dev_engine_versionName : "1.0.9",
dev_engine_versionCode : 110,
dev_engine_versionName : "1.1.0",

// DevHttpCapture - OkHttp 抓包工具库
dev_http_capture_versionCode : 112,
dev_http_capture_versionName : "1.1.2",
dev_http_capture_compiler_version : "1.1.2",
dev_http_capture_compiler_release_version: "1.1.2",
dev_http_capture_versionCode : 113,
dev_http_capture_versionName : "1.1.3",
dev_http_capture_compiler_version : "1.1.3",
dev_http_capture_compiler_release_version: "1.1.3",

// DevHttpManager - OkHttp 管理库 ( Retrofit 多 BaseUrl 管理、Progress 监听 )
dev_http_manager_versionCode : 102,
dev_http_manager_versionName : "1.0.2",
dev_http_manager_versionCode : 103,
dev_http_manager_versionName : "1.0.3",

// DevRetrofit - Retrofit + Kotlin Coroutines 封装
dev_retrofit_versionCode : 101,
dev_retrofit_versionName : "1.0.1",
dev_retrofit_versionCode : 102,
dev_retrofit_versionName : "1.0.2",

// DevWidget - 自定义 View UI 库
dev_widget_versionCode : 119,
dev_widget_versionName : "1.1.9",
dev_widget_versionCode : 120,
dev_widget_versionName : "1.2.0",

// DevEnvironment - Android 环境配置切换库
dev_environment_versionCode : 111,
dev_environment_version : "1.1.1",
dev_environment_base_version : "1.1.1",
dev_environment_compiler_version : "1.1.1",
dev_environment_compiler_release_version : "1.1.1",
dev_environment_versionCode : 112,
dev_environment_version : "1.1.2",
dev_environment_base_version : "1.1.2",
dev_environment_compiler_version : "1.1.2",
dev_environment_compiler_release_version : "1.1.2",

// DevJava - Java 工具类库 ( 不依赖 android api )
dev_java_versionCode : 147,
dev_java_version : "1.4.7",
dev_java_versionCode : 148,
dev_java_version : "1.4.8",
]
}
11 changes: 11 additions & 0 deletions lib/DevApp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Change Log
==========

Version 2.4.2 *(2022-09-18)*
----------------------------

* `[Add]` 新增 UriUtils#ofUri

* `[Add]` 新增 NumberUtils#calculateUnitD、calculateUnitF

* `[Add]` 新增 FormatUtils 工具类及 UnitSpanFormatter、ArgsFormatter 封装类

* `[Add]` 新增部分通用 able 接口

Version 2.4.1 *(2022-07-18)*
----------------------------

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.4.1'
implementation 'io.github.afkt:DevAppX:2.4.2'
```

## 目录结构
Expand Down
7 changes: 7 additions & 0 deletions lib/DevAssist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change Log
==========

Version 1.3.8 *(2022-09-18)*
----------------------------

* `[Chore]` 依赖 DevApp 库同步升级

* `[Add]` 新增 DevDataAdapter#onAttachedToRecyclerView 方法初始化处理

Version 1.3.7 *(2022-08-07)*
----------------------------

Expand Down
2 changes: 1 addition & 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.3.7'
implementation 'io.github.afkt:DevAssist:1.3.8'
```

## 目录结构
Expand Down
5 changes: 5 additions & 0 deletions lib/DevBase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

Version 1.1.4 *(2022-09-18)*
----------------------------

* `[Chore]` 依赖 DevApp 库同步升级

Version 1.1.3 *(2022-07-04)*
----------------------------

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

```gradle
implementation 'io.github.afkt:DevBase:1.1.3'
implementation 'io.github.afkt:DevBase:1.1.4'
```

## 目录结构
Expand Down
5 changes: 5 additions & 0 deletions lib/DevBaseMVVM/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

Version 1.1.2 *(2022-09-18)*
----------------------------

* `[Chore]` 依赖 DevApp 库同步升级

Version 1.1.1 *(2022-07-04)*
----------------------------

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

```gradle
implementation 'io.github.afkt:DevBaseMVVM:1.1.1'
implementation 'io.github.afkt:DevBaseMVVM:1.1.2'
```

## 目录结构
Expand Down
5 changes: 5 additions & 0 deletions lib/DevEngine/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

Version 1.1.0 *(2022-09-18)*
----------------------------

* `[Chore]` 依赖 DevApp、DevAssist 库同步升级

Version 1.0.9 *(2022-08-07)*
----------------------------

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.9'
implementation 'io.github.afkt:DevEngine:1.1.0'
```

## 目录结构
Expand Down
7 changes: 7 additions & 0 deletions lib/DevHttpCapture/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change Log
==========

Version 1.1.3 *(2022-09-18)*
----------------------------

* `[Chore]` 依赖 DevApp、DevAssist 库同步升级

* `[Refactor]` 使用 Kotlin 重新编写该库代码

Version 1.1.2 *(2022-07-04)*
----------------------------

Expand Down
3 changes: 2 additions & 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.1.2'
implementation 'io.github.afkt:DevHttpCapture:1.1.3'
```

## 目录结构
Expand Down Expand Up @@ -159,4 +159,5 @@ DevHttpCapture.updateInterceptor(moduleName, capture)
| callResponseHeaders | 生成响应头信息 Map |
| callResponseBodyFailed | 生成错误响应体信息 |
| callResponseBody | 生成响应体信息 Map |
| converterRequestBody | 转换请求体信息 Map |
| callEnd | 抓包结束 |
5 changes: 5 additions & 0 deletions lib/DevHttpManager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

Version 1.0.3 *(2022-09-18)*
----------------------------

* `[Chore]` 依赖 DevApp 库同步升级

Version 1.0.2 *(2022-07-04)*
----------------------------

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

```gradle
implementation 'io.github.afkt:DevHttpManager:1.0.2'
implementation 'io.github.afkt:DevHttpManager:1.0.3'
```

## 目录结构
Expand Down
9 changes: 9 additions & 0 deletions lib/DevJava/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Change Log
==========

Version 1.4.8 *(2022-09-18)*
----------------------------

* `[Add]` 新增 NumberUtils#calculateUnitD、calculateUnitF

* `[Add]` 新增 FormatUtils 工具类及 UnitSpanFormatter、ArgsFormatter 封装类

* `[Add]` 新增部分通用 able 接口

Version 1.4.7 *(2022-07-18)*
----------------------------

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.4.7'
implementation 'io.github.afkt:DevJava:1.4.8'
```

## 目录结构
Expand Down
5 changes: 5 additions & 0 deletions lib/DevRetrofit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

Version 1.0.2 *(2022-09-18)*
----------------------------

* `[Upgrade]` 升级第三方库以及对应 API 变动更新

Version 1.0.1 *(2022-07-04)*
----------------------------

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

```gradle
implementation 'io.github.afkt:DevRetrofit:1.0.1'
implementation 'io.github.afkt:DevRetrofit:1.0.2'
```

## 框架功能介绍
Expand Down
5 changes: 5 additions & 0 deletions lib/DevWidget/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

Version 1.2.0 *(2022-09-18)*
----------------------------

* `[Chore]` 依赖 DevApp 库同步升级

Version 1.1.9 *(2022-07-04)*
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion lib/DevWidget/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

```gradle
// AndroidX
implementation 'io.github.afkt:DevWidgetX:1.1.9'
implementation 'io.github.afkt:DevWidgetX:1.2.0'
```

## 目录结构
Expand Down
7 changes: 7 additions & 0 deletions lib/Environment/DevEnvironment/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change Log
==========

Version 1.1.2 *(2022-09-18)*
----------------------------

* `[Chore]` 依赖 DevApp 库同步升级

* `[Refactor]` 统一可视化页面 UI 样式

Version 1.1.1 *(2022-07-04)*
----------------------------

Expand Down
Loading

0 comments on commit 31bfd4b

Please sign in to comment.