10000 tv btn fix + jit v4.0.1 · Micoder-dev/DirectAppUpdate@152a2ad · GitHub
[go: up one dir, main page]

Skip to content

Commit 152a2ad

Browse files
committed
tv btn fix + jit v4.0.1
1 parent 5c81621 commit 152a2ad

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

directappupdate/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ publishing {
8383
register<MavenPublication>("release") {
8484
groupId = "com.micoder.directappupdate"
8585
artifactId = "directappupdate"
86-
version = "1.0.0"
86+
version = "4.0.1"
8787

8888
afterEvaluate {
8989
from(components["release"])

directappupdate/src/main/java/com/micoder/directappupdate/components/Dialogs.kt

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -133,14 +133,10 @@ fun UpdateDialog(
133133
Spacer(modifier = Modifier.height(16.dp))
134134
if (dialogState.showUpdateButton) {
135135
Row {
136-
androidx.tv.material3.Button(onClick = onUpdateClick) {
137-
Text(text = "Update App")
138-
}
136+
Button(text = "Update App", onClick = onUpdateClick)
139137
if (dialogState.updateType == UpdateType.Flexible) {
140138
Spacer(modifier = Modifier.width(8.dp))
141-
androidx.tv.material3.Button(onClick = onCancelClick) {
142-
Text(text = "Cancel")
143-
}
139+
Button(text = "Cancel", onClick = onCancelClick)
144140
}
145141
}
146142
} else {

0 commit comments

Comments
 (0)
0