Skip to content

Commit

Permalink
fix git conflicts
Browse files Browse the repository at this point in the history
Signed-off-by: alperozturk <[email protected]>
  • Loading branch information
alperozturk96 committed Feb 14, 2025
1 parent a715566 commit b71874b
Show file tree
Hide file tree
Showing 12 changed files with 78 additions and 1,081 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.core:core-splashscreen:1.0.1'
implementation 'androidx.fragment:fragment:1.8.5'
implementation 'androidx.fragment:fragment:1.8.6'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7'
implementation 'androidx.preference:preference:1.2.1'
implementation 'androidx.recyclerview:recyclerview-selection:1.1.0'
Expand All @@ -139,7 +139,7 @@ dependencies {
implementation 'com.squareup.retrofit2:retrofit:2.11.0'

// Gson
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'com.google.code.gson:gson:2.12.1'

// ReactiveX
implementation 'io.reactivex.rxjava2:rxjava:2.2.21'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ package it.niedermann.owncloud.notes.persistence.dao

import androidx.room.Dao
import androidx.room.Insert
import androidx.room.OnConflictStrategy
import androidx.room.Query
import it.niedermann.owncloud.notes.persistence.entity.ShareEntity

@Dao
interface ShareDao {
@Insert(onConflict = OnConflictStrategy.REPLACE)
fun addShareEntities(entities: List<ShareEntity>)

@Insert
fun addShareEntity(entity: ShareEntity)

@Query("SELECT * FROM share_table WHERE noteRemoteId = :noteRemoteId AND userName = :userName")
fun getShareEntities(noteRemoteId: Long, userName: String): List<ShareEntity>
@Query("SELECT * FROM share_table WHERE path = :path")
fun getShareEntities(path: String): List<ShareEntity>
}

This file was deleted.

This file was deleted.

Loading

0 comments on commit b71874b

Please sign in to comment.