Skip to content

Commit

Permalink
Fix duplicate classes
Browse files Browse the repository at this point in the history
  • Loading branch information
shubertm committed Oct 12, 2023
1 parent 0e94aa4 commit 7874af7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ dependencies {
implementation 'androidx.preference:preference-ktx:1.2.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'

implementation 'dev.arkbuilders:arklib:0.3.2'
implementation 'com.github.ark-builders:ark-filepicker:1d89c8c478'
implementation('dev.arkbuilders:arklib:0.3.2') {
exclude group: 'dev.arkbuilders', module: 'arkfilepicker'
}

implementation 'ch.acra:acra-http:5.9.5'
implementation 'ch.acra:acra-dialog:5.9.5'
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/java/dev/arkbuilders/arkmemo/App.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package dev.arkbuilders.arkmemo

import android.app.Application
import android.content.Context
import dagger.hilt.android.HiltAndroidApp
import dev.arkbuilders.arklib.initArkLib
import kotlinx.coroutines.CoroutineScope
Expand All @@ -13,7 +12,7 @@ import org.acra.data.StringFormat
import org.acra.ktx.initAcra
import org.acra.sender.HttpSender
import dev.arkbuilders.arkmemo.dev.arkbuilders.arkmemo.utils.Config
import space.taran.arkfilepicker.folders.FoldersRepo
import dev.arkbuilders.arkfilepicker.folders.FoldersRepo

@HiltAndroidApp
class App: Application() {
Expand Down

0 comments on commit 7874af7

Please sign in to comment.