Skip to content

Commit

Permalink
docs: 更新 API README
Browse files Browse the repository at this point in the history
docs: 更新 CHANGELOG.md
  • Loading branch information
afkT committed Jan 20, 2024
1 parent c3dce21 commit 6a1a97e
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 15 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ implementation 'io.github.afkt:DevBaseMVVM:1.1.4'
implementation 'io.github.afkt:DevEngine:1.1.2'
// DevHttpCapture - OkHttp 抓包工具库
implementation 'io.github.afkt:DevHttpCapture:1.1.5'
implementation 'io.github.afkt:DevHttpCapture:1.1.6'
// DevHttpCaptureCompiler - OkHttp 抓包工具库 ( 可视化功能 )
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.5'
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.5'
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.6'
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.6'
// DevHttpManager - OkHttp 管理库 ( Retrofit 多 BaseUrl 管理、Progress 监听 )
implementation 'io.github.afkt:DevHttpManager:1.0.5'
Expand Down
6 changes: 3 additions & 3 deletions README_API.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,11 @@ implementation 'io.github.afkt:DevBaseMVVM:1.1.4'
implementation 'io.github.afkt:DevEngine:1.1.2'
// DevHttpCapture - OkHttp 抓包工具库
implementation 'io.github.afkt:DevHttpCapture:1.1.5'
implementation 'io.github.afkt:DevHttpCapture:1.1.6'
// DevHttpCaptureCompiler - OkHttp 抓包工具库 ( 可视化功能 )
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.5'
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.5'
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.6'
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.6'
// DevHttpManager - OkHttp 管理库 ( Retrofit 多 BaseUrl 管理、Progress 监听 )
implementation 'io.github.afkt:DevHttpManager:1.0.5'
Expand Down
7 changes: 6 additions & 1 deletion file/gradle/upload/sonatype/sonatypeUploadAndroid.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,12 @@ task sourcesJar(type: Jar) {
task javadoc(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
// classpath += configurations.compile
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
// // Gradle 8.0.2 之前
// classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
// 升级 Gradle 8.2.1 后 android.getBootClasspath() 异常
// https://stackoverflow.com/questions/77436558/android-custom-javadoc-task-throws-path-may-not-be-null-or-empty-string
classpath += files("${android.sdkDirectory}/platforms/${android.compileSdkVersion}/android.jar")
classpath += files("${android.sdkDirectory}/build-tools/${android.buildToolsVersion}/core-lambda-stubs.jar")
failOnError false
}

Expand Down
8 changes: 4 additions & 4 deletions file/gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ ext {
dev_engine_versionName : "1.1.2",

// DevHttpCapture - OkHttp 抓包工具库
dev_http_capture_versionCode : 115,
dev_http_capture_versionName : "1.1.5",
dev_http_capture_compiler_version : "1.1.5",
dev_http_capture_compiler_release_version: "1.1.5",
dev_http_capture_versionCode : 116,
dev_http_capture_versionName : "1.1.6",
dev_http_capture_compiler_version : "1.1.6",
dev_http_capture_compiler_release_version: "1.1.6",

// DevHttpManager - OkHttp 管理库 ( Retrofit 多 BaseUrl 管理、Progress 监听 )
dev_http_manager_versionCode : 105,
Expand Down
1 change: 1 addition & 0 deletions lib/DevHttpCapture/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Change Log
==========

Version 1.1.6 *(2024-01-18)*
Version 1.1.5 *(2024-01-18)*
----------------------------

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.1.5'
implementation 'io.github.afkt:DevHttpCapture:1.1.6'
```

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

Version 1.1.6 *(2024-01-18)*
Version 1.1.5 *(2024-01-18)*
----------------------------

Expand Down
6 changes: 3 additions & 3 deletions lib/HttpCapture/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ version | [![][maven_svg]][maven] | [![][maven_svg]][maven] | [![][maven_svg]][m

```groovy
dependencies {
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.5'
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.5'
debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.6'
releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.6'
}
```

Expand Down Expand Up @@ -90,5 +90,5 @@ DevHttpCaptureCompiler.removeUrlFunction(moduleName)



[maven_svg]: https://img.shields.io/badge/Maven-1.1.5-brightgreen.svg
[maven_svg]: https://img.shields.io/badge/Maven-1.1.6-brightgreen.svg
[maven]: https://search.maven.org/search?q=io.github.afkt

0 comments on commit 6a1a97e

Please sign in to comment.