Skip to content

Commit 97c98bb

Browse files
committed
fix bugs
1 parent 1fabe4b commit 97c98bb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1286
-486
lines changed

Diff for: .github/workflows/android.yml

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
paths:
77
- "**/WorkflowsTrigger.kt"
88

9+
env:
10+
TZ: Asia/Shanghai
11+
912
jobs:
1013
build:
1114

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Apk 下载:[releases](https://github.com/leavesCZY/compose_chat/releases)
2727

2828
![](https://user-images.githubusercontent.com/30774063/221415412-57eb8da5-e85c-4409-9a0f-37df11f71a70.gif)
2929

30-
另外,Compose Chat 也使用到了我的另两个开源库
30+
Compose Chat 也使用到了我的另外两个开源库
3131

3232
- 一个用 Jetpack Compose 实现的 Android 图片/视频 选择框架:[Matisse](https://github.com/leavesCZY/Matisse)
3333
- 一个适用于 Android 的字节码插桩库:[Trace](https://github.com/leavesCZY/Trace)

Diff for: app/build.gradle.kts

+4-5
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ dependencies {
1010
implementationCoil()
1111
implementation(Dependencies.Accompanist.uiController)
1212
implementation(Dependencies.Components.appcompat)
13+
implementation(Dependencies.Components.exifinterface)
1314
implementation(Dependencies.Components.coroutines)
1415
implementation(Dependencies.Components.matisse)
1516
}
1617

17-
clickTrace {
18-
compose {
19-
onClickClass = "github.leavesczy.compose_chat.extend.ComposeOnClick"
20-
onClickWhiteList = "notCheck"
21-
}
18+
composeClickTrace {
19+
onClickClass = "github.leavesczy.compose_chat.extend.ComposeOnClick"
20+
onClickWhiteList = "notCheck"
2221
}

0 commit comments

Comments
 (0)