Skip to content

Commit

Permalink
Push beta apk
Browse files Browse the repository at this point in the history
[Fine-tuning some design]
[Push 0.1.0-build_beta02]
[Update some dependencies]
  • Loading branch information
Z-Siqi committed Sep 5, 2024
1 parent f32a09f commit 150a112
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,24 +53,24 @@ android {
dependencies {

implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.4")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.5")
implementation("androidx.activity:activity-compose:1.9.1")
implementation(platform("androidx.compose:compose-bom:2024.08.00"))
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-graphics")
implementation("androidx.compose.ui:ui-tooling-preview")
implementation("androidx.compose.material3:material3-android:1.2.1")
implementation("androidx.compose.foundation:foundation-android:1.7.0-rc01")
implementation("androidx.compose.foundation:foundation-android:1.7.0")
implementation("androidx.work:work-runtime-ktx:2.9.1")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.2.1")
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
androidTestImplementation(platform("androidx.compose:compose-bom:2024.08.00"))
androidTestImplementation(platform("androidx.compose:compose-bom:2024.09.00"))
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
debugImplementation("androidx.compose.ui:ui-tooling")
debugImplementation("androidx.compose.ui:ui-test-manifest")
// Navigation
implementation("androidx.navigation:navigation-compose:2.7.7")
implementation("androidx.navigation:navigation-compose:2.8.0")
// Room
ksp("androidx.room:room-compiler:2.6.1")
implementation("androidx.room:room-runtime:2.6.1")
Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
2 changes: 1 addition & 1 deletion app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"filters": [],
"attributes": [],
"versionCode": 10,
"versionName": "0.1.0-build_beta01",
"versionName": "0.1.0-build_beta02",
"outputFile": "app-release.apk"
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fun NavTooltipContent(
) {
ElevatedCard(
modifier = modifier.padding(8.dp),
colors = CardDefaults.cardColors(MaterialTheme.colorScheme.surface)
colors = CardDefaults.cardColors(MaterialTheme.colorScheme.surfaceBright)
) {
Column(
modifier = modifier.padding(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ fun TaskLayout(
val tooltipState = rememberTooltipState(isPersistent = true)

var taskAddCard by rememberSaveable { mutableStateOf(false) }
var menu by rememberSaveable { mutableStateOf(false) }
var searchState by rememberSaveable { mutableStateOf(false) }

Scaffold(modifier = modifier.nestedScroll(scrollBehavior.nestedScrollConnection), topBar = {
var menu by rememberSaveable { mutableStateOf(false) }
NavTooltipContent(textRid = R.string.task_history, onClickToTaskHistory = {
taskState.checkTaskAction = false
menu = false
Expand Down Expand Up @@ -259,7 +259,7 @@ private fun TaskSearchBar(
BasicTextField(
modifier = modifier
.fillMaxSize()
.padding(start = 8.dp, end = 8.dp, top = 10.dp, bottom = 8.dp)
.padding(start = 5.dp, end = 5.dp, top = 10.dp, bottom = 8.dp)
.horizontalScroll(rememberScrollState()),
state = textFieldState,
lineLimits = TextFieldLineLimits.SingleLine,
Expand Down

0 comments on commit 150a112

Please sign in to comment.