-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from sendbird/release/3.9.2
3.9.2
- Loading branch information
Showing
71 changed files
with
2,183 additions
and
2,963 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 9 additions & 5 deletions
14
...uikit/consts/ClickableViewIdentifier.java → ...d/uikit/consts/ClickableViewIdentifier.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,36 @@ | ||
package com.sendbird.uikit.consts; | ||
package com.sendbird.uikit.consts | ||
|
||
/** | ||
* Identifier to determine which area was clicked when {@code MessageViewHolder} was clicked | ||
* Identifier to determine which area was clicked when `MessageViewHolder` was clicked | ||
*/ | ||
public enum ClickableViewIdentifier { | ||
enum class ClickableViewIdentifier { | ||
/** | ||
* Main message area | ||
*/ | ||
Chat, | ||
|
||
/** | ||
* Sender's profile area | ||
*/ | ||
Profile, | ||
|
||
/** | ||
* Quoted message area | ||
*/ | ||
QuoteReply, | ||
|
||
/** | ||
* Thread information area | ||
* | ||
* since 3.3.0 | ||
* @since 3.3.0 | ||
*/ | ||
ThreadInfo, | ||
|
||
/** | ||
* Parent message info menu area | ||
* This is only used in parent message info view | ||
* | ||
* since 3.3.0 | ||
* @since 3.3.0 | ||
*/ | ||
ParentMessageMenu | ||
} |
8 changes: 5 additions & 3 deletions
8
...rd/uikit/consts/CreatableChannelType.java → ...bird/uikit/consts/CreatableChannelType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 0 additions & 65 deletions
65
uikit/src/main/java/com/sendbird/uikit/consts/DialogEditTextParams.java
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
uikit/src/main/java/com/sendbird/uikit/consts/DialogEditTextParams.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.sendbird.uikit.consts | ||
|
||
import android.text.TextUtils.TruncateAt | ||
|
||
open class DialogEditTextParams private constructor( | ||
var hintText: String? = null, | ||
var enableSingleLine: Boolean = false, | ||
var ellipsis: TruncateAt? = null, | ||
var selection: Int = 0, | ||
var text: String? = null, | ||
) { | ||
constructor(hintText: String) : this(hintText = hintText, false, null, 0, null) | ||
} |
7 changes: 4 additions & 3 deletions
7
...ird/uikit/consts/KeyboardDisplayType.java → ...dbird/uikit/consts/KeyboardDisplayType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...ndbird/uikit/consts/MessageLoadState.java → ...sendbird/uikit/consts/MessageLoadState.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.