You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,7 @@ Fix `Message.channelInfo` not populated when parsing `message.new` event. [#5953
57
57
### 🐞 Fixed
58
58
- Fix unread separator showing before an uncommitted pending message. [#5945](https://github.com/GetStream/stream-chat-android/pull/5945)
59
59
- Fix unread separator showing before a message that was sent while offline. [#5945](https://github.com/GetStream/stream-chat-android/pull/5945)
60
+
- Expose `StorageHelper` and `AttachmentFilter` as public to fix `StorageHelperWrapper` not instantiable. [#5954](https://github.com/GetStream/stream-chat-android/pull/5954)
Copy file name to clipboardExpand all lines: stream-chat-android-compose/api/stream-chat-android-compose.api
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4669,6 +4669,7 @@ public final class io/getstream/chat/android/compose/ui/util/SearchResultNameFor
4669
4669
public final class io/getstream/chat/android/compose/ui/util/StorageHelperWrapper {
4670
4670
public static final field $stable I
4671
4671
public fun <init> (Landroid/content/Context;Lio/getstream/chat/android/ui/common/helper/internal/StorageHelper;Lio/getstream/chat/android/ui/common/helper/internal/AttachmentFilter;)V
4672
+
public synthetic fun <init> (Landroid/content/Context;Lio/getstream/chat/android/ui/common/helper/internal/StorageHelper;Lio/getstream/chat/android/ui/common/helper/internal/AttachmentFilter;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
4672
4673
public final fun getAttachmentsForUpload (Ljava/util/List;)Ljava/util/List;
4673
4674
public final fun getAttachmentsFromUris (Ljava/util/List;)Ljava/util/List;
4674
4675
public final fun getAttachmentsMetadataFromUris (Ljava/util/List;)Ljava/util/List;
Copy file name to clipboardExpand all lines: stream-chat-android-compose/src/main/java/io/getstream/chat/android/compose/ui/messages/attachments/factory/AttachmentsPickerFilesTabFactory.kt
Copy file name to clipboardExpand all lines: stream-chat-android-compose/src/main/java/io/getstream/chat/android/compose/ui/messages/attachments/factory/AttachmentsPickerImagesTabFactory.kt
Copy file name to clipboardExpand all lines: stream-chat-android-compose/src/main/java/io/getstream/chat/android/compose/ui/messages/attachments/factory/AttachmentsPickerSystemTabFactory.kt
Copy file name to clipboardExpand all lines: stream-chat-android-compose/src/main/java/io/getstream/chat/android/compose/ui/util/StorageHelperWrapper.kt
Copy file name to clipboardExpand all lines: stream-chat-android-compose/src/main/java/io/getstream/chat/android/compose/viewmodel/messages/MessagesViewModelFactory.kt
Copy file name to clipboardExpand all lines: stream-chat-android-ui-common/api/stream-chat-android-ui-common.api
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1105,6 +1105,27 @@ public abstract interface class io/getstream/chat/android/ui/common/helper/Video
1105
1105
public abstract fun getVideoRequestHeaders (Ljava/lang/String;)Ljava/util/Map;
1106
1106
}
1107
1107
1108
+
public final class io/getstream/chat/android/ui/common/helper/internal/AttachmentFilter {
1109
+
public static final field $stable I
1110
+
public fun <init> ()V
1111
+
public fun <init> (Lio/getstream/chat/android/client/ChatClient;)V
1112
+
public synthetic fun <init> (Lio/getstream/chat/android/client/ChatClient;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
1113
+
public final fun filterAttachments (Ljava/util/List;)Ljava/util/List;
1114
+
public final fun getSupportedMimeTypes ()Ljava/util/List;
1115
+
}
1116
+
1117
+
public final class io/getstream/chat/android/ui/common/helper/internal/StorageHelper {
1118
+
public static final field $stable I
1119
+
public static final field Companion Lio/getstream/chat/android/ui/common/helper/internal/StorageHelper$Companion;
1120
+
public static final field FILE_NAME_PREFIX Ljava/lang/String;
1121
+
public static final field TIME_FORMAT Ljava/lang/String;
1122
+
public fun <init> ()V
1123
+
public final fun getAttachmentsFromUriList (Landroid/content/Context;Ljava/util/List;)Ljava/util/List;
1124
+
public final fun getCachedFileFromUri (Landroid/content/Context;Lio/getstream/chat/android/ui/common/state/messages/composer/AttachmentMetaData;)Ljava/io/File;
1125
+
public final fun getFileAttachments (Landroid/content/Context;)Ljava/util/List;
1126
+
public final fun getMediaAttachments (Landroid/content/Context;)Ljava/util/List;
1127
+
}
1128
+
1108
1129
public final class io/getstream/chat/android/ui/common/helper/internal/StorageHelper$Companion {
Copy file name to clipboardExpand all lines: stream-chat-android-ui-common/src/main/kotlin/io/getstream/chat/android/ui/common/helper/internal/AttachmentFilter.kt
Copy file name to clipboardExpand all lines: stream-chat-android-ui-common/src/main/kotlin/io/getstream/chat/android/ui/common/helper/internal/StorageHelper.kt
0 commit comments