Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

agp = "8.10.1"
mavenPublish = "0.32.0"
metalava = "0.3.3"
metalava = "0.3.5"

kotlin = "2.0.21"
dokka = "1.8.10"
Expand Down
4 changes: 2 additions & 2 deletions readmore-view/api/current.api
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
package com.webtoonscorp.android.readmore {

public final class ReadMoreTextView extends androidx.appcompat.widget.AppCompatTextView {
ctor public ReadMoreTextView(android.content.Context context, optional android.util.AttributeSet? attrs, optional int defStyleAttr);
ctor public ReadMoreTextView(android.content.Context context, optional android.util.AttributeSet? attrs);
ctor public ReadMoreTextView(android.content.Context context);
ctor public ReadMoreTextView(android.content.Context context, optional android.util.AttributeSet? attrs);
ctor public ReadMoreTextView(android.content.Context context, optional android.util.AttributeSet? attrs, optional int defStyleAttr);
method public boolean isExpandable();
method public boolean isExpanded();
method public void setExpanded(boolean expanded);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public class ReadMoreTextView @JvmOverloads constructor(
)
}

fun setReadMoreMaxLines(maxLines: Int) {
public fun setReadMoreMaxLines(maxLines: Int) {
if (this.readMoreMaxLines != maxLines) {
this.readMoreMaxLines = maxLines

Expand Down
Loading