File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
src/main/java/com/micoder/directappupdate/components Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ publishing {
83
83
register<MavenPublication >(" release" ) {
84
84
groupId = " com.micoder.directappupdate"
85
85
artifactId = " directappupdate"
86
- version = " 1 .0.0 "
86
+ version = " 4 .0.1 "
87
87
88
88
afterEvaluate {
89
89
from(components[" release" ])
Original file line number Diff line number Diff line change @@ -133,14 +133,10 @@ fun UpdateDialog(
133
133
Spacer (modifier = Modifier .height(16 .dp))
134
134
if (dialogState.showUpdateButton) {
135
135
Row {
136
- androidx.tv.material3.Button (onClick = onUpdateClick) {
137
- Text (text = " Update App" )
138
- }
136
+ Button (text = " Update App" , onClick = onUpdateClick)
139
137
if (dialogState.updateType == UpdateType .Flexible ) {
140
138
Spacer (modifier = Modifier .width(8 .dp))
141
- androidx.tv.material3.Button (onClick = onCancelClick) {
142
- Text (text = " Cancel" )
143
- }
139
+ Button (text = " Cancel" , onClick = onCancelClick)
144
140
}
145
141
}
146
142
} else {
You can’t perform that action at this time.
0 commit comments