Skip to content

Commit e9d33aa

Browse files
committed
Dependencies updates
1 parent dbbdbdc commit e9d33aa

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

app/build.gradle

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -67,25 +67,25 @@ android {
6767
}
6868

6969
dependencies {
70-
implementation 'androidx.work:work-runtime-ktx:2.8.1'
71-
implementation 'androidx.room:room-runtime:2.5.2'
72-
annotationProcessor 'androidx.room:room-compiler:2.5.2'
73-
ksp 'androidx.room:room-compiler:2.5.2'
74-
implementation 'androidx.room:room-ktx:2.5.2'
70+
implementation 'androidx.work:work-runtime-ktx:2.9.0'
71+
implementation 'androidx.room:room-runtime:2.6.1'
72+
annotationProcessor 'androidx.room:room-compiler:2.6.1'
73+
ksp 'androidx.room:room-compiler:2.6.1'
74+
implementation 'androidx.room:room-ktx:2.6.1'
7575
implementation 'androidx.core:core-ktx:1.12.0'
7676
implementation platform('org.jetbrains.kotlin:kotlin-bom:1.8.0')
77-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
78-
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.6.2'
79-
implementation 'androidx.activity:activity-compose:1.7.2'
80-
implementation 'androidx.activity:activity-ktx:1.7.2'
81-
implementation 'androidx.fragment:fragment-ktx:1.6.1'
77+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.7.0'
78+
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.7.0'
79+
implementation 'androidx.activity:activity-compose:1.8.2'
80+
implementation 'androidx.activity:activity-ktx:1.8.2'
81+
implementation 'androidx.fragment:fragment-ktx:1.6.2'
8282
implementation platform('androidx.compose:compose-bom:2022.10.00')
8383
implementation 'androidx.compose.ui:ui'
8484
implementation 'androidx.compose.ui:ui-graphics'
8585
implementation 'androidx.compose.ui:ui-tooling-preview'
8686
implementation 'androidx.compose.material3:material3'
87-
implementation 'androidx.compose.material:material-icons-extended:1.5.1'
88-
implementation 'androidx.compose.runtime:runtime-livedata:1.5.1'
87+
implementation 'androidx.compose.material:material-icons-extended:1.6.0'
88+
implementation 'androidx.compose.runtime:runtime-livedata:1.6.0'
8989
implementation 'androidx.datastore:datastore-preferences:1.0.0'
9090
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
9191
implementation 'com.squareup.okhttp3:logging-interceptor:4.11.0'

app/src/main/java/com/phpbg/easysync/db/AppDatabaseFactory.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ import androidx.room.migration.Migration
3030
import androidx.sqlite.db.SupportSQLiteDatabase
3131

3232
val MIGRATION_1_2 = object : Migration(1, 2) {
33-
override fun migrate(database: SupportSQLiteDatabase) {
34-
database.execSQL("ALTER TABLE File ADD COLUMN is_collection INTEGER NOT NULL DEFAULT(0)")
33+
override fun migrate(db: SupportSQLiteDatabase) {
34+
db.execSQL("ALTER TABLE File ADD COLUMN is_collection INTEGER NOT NULL DEFAULT(0)")
3535
}
3636
}
3737

app/src/main/java/com/phpbg/easysync/ui/MainActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ import androidx.compose.foundation.layout.padding
4545
import androidx.compose.foundation.rememberScrollState
4646
import androidx.compose.foundation.verticalScroll
4747
import androidx.compose.material.icons.Icons
48+
import androidx.compose.material.icons.automirrored.filled.Help
4849
import androidx.compose.material.icons.filled.Cancel
4950
import androidx.compose.material.icons.filled.CheckCircle
50-
import androidx.compose.material.icons.filled.Help
5151
import androidx.compose.material.icons.filled.Info
5252
import androidx.compose.material.icons.filled.Schedule
5353
import androidx.compose.material.icons.filled.Settings
@@ -248,7 +248,7 @@ private fun Main(
248248
title = null,
249249
actionTitle = stringResource(R.string.about),
250250
statusColor = Color.Gray,
251-
statusIcon = Icons.Default.Help,
251+
statusIcon = Icons.AutoMirrored.Filled.Help,
252252
clickHandler = {
253253
val i = Intent(Intent.ACTION_VIEW)
254254
i.data = Uri.parse("https://github.com/phpbg/easysync#easysync")

0 commit comments

Comments
 (0)