Skip to content

Commit

Permalink
Dependencies updates
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelchemla committed Feb 1, 2024
1 parent dbbdbdc commit e9d33aa
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
24 changes: 12 additions & 12 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,25 +67,25 @@ android {
}

dependencies {
implementation 'androidx.work:work-runtime-ktx:2.8.1'
implementation 'androidx.room:room-runtime:2.5.2'
annotationProcessor 'androidx.room:room-compiler:2.5.2'
ksp 'androidx.room:room-compiler:2.5.2'
implementation 'androidx.room:room-ktx:2.5.2'
implementation 'androidx.work:work-runtime-ktx:2.9.0'
implementation 'androidx.room:room-runtime:2.6.1'
annotationProcessor 'androidx.room:room-compiler:2.6.1'
ksp 'androidx.room:room-compiler:2.6.1'
implementation 'androidx.room:room-ktx:2.6.1'
implementation 'androidx.core:core-ktx:1.12.0'
implementation platform('org.jetbrains.kotlin:kotlin-bom:1.8.0')
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.6.2'
implementation 'androidx.activity:activity-compose:1.7.2'
implementation 'androidx.activity:activity-ktx:1.7.2'
implementation 'androidx.fragment:fragment-ktx:1.6.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.7.0'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.7.0'
implementation 'androidx.activity:activity-compose:1.8.2'
implementation 'androidx.activity:activity-ktx:1.8.2'
implementation 'androidx.fragment:fragment-ktx:1.6.2'
implementation platform('androidx.compose:compose-bom:2022.10.00')
implementation 'androidx.compose.ui:ui'
implementation 'androidx.compose.ui:ui-graphics'
implementation 'androidx.compose.ui:ui-tooling-preview'
implementation 'androidx.compose.material3:material3'
implementation 'androidx.compose.material:material-icons-extended:1.5.1'
implementation 'androidx.compose.runtime:runtime-livedata:1.5.1'
implementation 'androidx.compose.material:material-icons-extended:1.6.0'
implementation 'androidx.compose.runtime:runtime-livedata:1.6.0'
implementation 'androidx.datastore:datastore-preferences:1.0.0'
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
implementation 'com.squareup.okhttp3:logging-interceptor:4.11.0'
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/com/phpbg/easysync/db/AppDatabaseFactory.kt
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ import androidx.room.migration.Migration
import androidx.sqlite.db.SupportSQLiteDatabase

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

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/com/phpbg/easysync/ui/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.automirrored.filled.Help
import androidx.compose.material.icons.filled.Cancel
import androidx.compose.material.icons.filled.CheckCircle
import androidx.compose.material.icons.filled.Help
import androidx.compose.material.icons.filled.Info
import androidx.compose.material.icons.filled.Schedule
import androidx.compose.material.icons.filled.Settings
Expand Down Expand Up @@ -248,7 +248,7 @@ private fun Main(
title = null,
actionTitle = stringResource(R.string.about),
statusColor = Color.Gray,
statusIcon = Icons.Default.Help,
statusIcon = Icons.AutoMirrored.Filled.Help,
clickHandler = {
val i = Intent(Intent.ACTION_VIEW)
i.data = Uri.parse("https://github.com/phpbg/easysync#easysync")
Expand Down

0 comments on commit e9d33aa

Please sign in to comment.