File tree Expand file tree Collapse file tree 8 files changed +22
-15
lines changed
Expand file tree Collapse file tree 8 files changed +22
-15
lines changed Original file line number Diff line number Diff line change @@ -69,11 +69,11 @@ implementation 'io.github.afkt:DevBaseMVVM:1.1.4'
6969implementation 'io.github.afkt:DevEngine:1.1.2'
7070
7171// DevHttpCapture - OkHttp 抓包工具库
72- implementation 'io.github.afkt:DevHttpCapture:1.1.5 '
72+ implementation 'io.github.afkt:DevHttpCapture:1.1.6 '
7373
7474// DevHttpCaptureCompiler - OkHttp 抓包工具库 ( 可视化功能 )
75- debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.5 '
76- releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.5 '
75+ debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.6 '
76+ releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.6 '
7777
7878// DevHttpManager - OkHttp 管理库 ( Retrofit 多 BaseUrl 管理、Progress 监听 )
7979implementation 'io.github.afkt:DevHttpManager:1.0.5'
Original file line number Diff line number Diff line change @@ -185,11 +185,11 @@ implementation 'io.github.afkt:DevBaseMVVM:1.1.4'
185185implementation 'io.github.afkt:DevEngine:1.1.2'
186186
187187// DevHttpCapture - OkHttp 抓包工具库
188- implementation 'io.github.afkt:DevHttpCapture:1.1.5 '
188+ implementation 'io.github.afkt:DevHttpCapture:1.1.6 '
189189
190190// DevHttpCaptureCompiler - OkHttp 抓包工具库 ( 可视化功能 )
191- debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.5 '
192- releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.5 '
191+ debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.6 '
192+ releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.6 '
193193
194194// DevHttpManager - OkHttp 管理库 ( Retrofit 多 BaseUrl 管理、Progress 监听 )
195195implementation 'io.github.afkt:DevHttpManager:1.0.5'
Original file line number Diff line number Diff line change @@ -69,7 +69,12 @@ task sourcesJar(type: Jar) {
6969task javadoc (type : Javadoc ) {
7070 source = android. sourceSets. main. java. srcDirs
7171// classpath += configurations.compile
72- classpath + = project. files(android. getBootClasspath(). join(File . pathSeparator))
72+ // // Gradle 8.0.2 之前
73+ // classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
74+ // 升级 Gradle 8.2.1 后 android.getBootClasspath() 异常
75+ // https://stackoverflow.com/questions/77436558/android-custom-javadoc-task-throws-path-may-not-be-null-or-empty-string
76+ classpath + = files(" ${ android.sdkDirectory} /platforms/${ android.compileSdkVersion} /android.jar" )
77+ classpath + = files(" ${ android.sdkDirectory} /build-tools/${ android.buildToolsVersion} /core-lambda-stubs.jar" )
7378 failOnError false
7479}
7580
Original file line number Diff line number Diff line change @@ -50,10 +50,10 @@ ext {
5050 dev_engine_versionName : " 1.1.2" ,
5151
5252 // DevHttpCapture - OkHttp 抓包工具库
53- dev_http_capture_versionCode : 115 ,
54- dev_http_capture_versionName : " 1.1.5 " ,
55- dev_http_capture_compiler_version : " 1.1.5 " ,
56- dev_http_capture_compiler_release_version : " 1.1.5 " ,
53+ dev_http_capture_versionCode : 116 ,
54+ dev_http_capture_versionName : " 1.1.6 " ,
55+ dev_http_capture_compiler_version : " 1.1.6 " ,
56+ dev_http_capture_compiler_release_version : " 1.1.6 " ,
5757
5858 // DevHttpManager - OkHttp 管理库 ( Retrofit 多 BaseUrl 管理、Progress 监听 )
5959 dev_http_manager_versionCode : 105 ,
Original file line number Diff line number Diff line change 11Change Log
22==========
33
4+ Version 1.1.6 * (2024-01-18)*
45Version 1.1.5 * (2024-01-18)*
56----------------------------
67
Original file line number Diff line number Diff line change 22## Gradle
33
44``` gradle
5- implementation 'io.github.afkt:DevHttpCapture:1.1.5 '
5+ implementation 'io.github.afkt:DevHttpCapture:1.1.6 '
66```
77
88## 目录结构
Original file line number Diff line number Diff line change 11Change Log
22==========
33
4+ Version 1.1.6 * (2024-01-18)*
45Version 1.1.5 * (2024-01-18)*
56----------------------------
67
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ version | [![][maven_svg]][maven] | [![][maven_svg]][maven] | [![][maven_svg]][m
2121
2222``` groovy
2323dependencies {
24- debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.5 '
25- releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.5 '
24+ debugImplementation 'io.github.afkt:DevHttpCaptureCompiler:1.1.6 '
25+ releaseImplementation 'io.github.afkt:DevHttpCaptureCompilerRelease:1.1.6 '
2626}
2727```
2828
@@ -90,5 +90,5 @@ DevHttpCaptureCompiler.removeUrlFunction(moduleName)
9090
9191
9292
93- [ maven_svg ] : https://img.shields.io/badge/Maven-1.1.5 -brightgreen.svg
93+ [ maven_svg ] : https://img.shields.io/badge/Maven-1.1.6 -brightgreen.svg
9494[ maven ] : https://search.maven.org/search?q=io.github.afkt
You can’t perform that action at this time.
0 commit comments