Skip to content

Commit

Permalink
Package renaming (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillt authored Oct 8, 2023
1 parent 05a16ff commit 56f0f20
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ dependencies {
implementation 'com.github.kirich1409:viewbindingpropertydelegate-noreflection:1.5.6'

implementation 'com.google.code.gson:gson:2.8.9'
implementation 'com.github.ark-builders:ark-filepicker:main-SNAPSHOT'
implementation 'com.github.ARK-Builders:ark-filepicker:1d89c8c478'
implementation 'androidx.preference:preference-ktx:1.2.0'
kapt 'androidx.room:room-compiler:2.4.2'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import com.ark.globe.fragments.Settings
import com.ark.globe.fragments.locations.LocationsFragment
import com.ark.globe.preferences.GlobePreferences
import dagger.hilt.android.AndroidEntryPoint
import space.taran.arkfilepicker.presentation.onArkPathPicked
import dev.arkbuilders.arkfilepicker.presentation.onArkPathPicked

@AndroidEntryPoint
class MainActivity: AppCompatActivity(R.layout.activity_main) {
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/kotlin/com/ark/globe/filehandling/FilePicker.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import androidx.core.content.ContextCompat
import androidx.fragment.app.FragmentManager
import com.ark.globe.BuildConfig
import com.ark.globe.R
import space.taran.arkfilepicker.ArkFilePickerConfig
import space.taran.arkfilepicker.presentation.filepicker.ArkFilePickerFragment
import space.taran.arkfilepicker.presentation.filepicker.ArkFilePickerMode
import dev.arkbuilders.arkfilepicker.ArkFilePickerConfig
import dev.arkbuilders.arkfilepicker.presentation.filepicker.ArkFilePickerFragment
import dev.arkbuilders.arkfilepicker.presentation.filepicker.ArkFilePickerMode

class FilePicker private constructor(){
companion object{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/kotlin/com/ark/globe/fragments/Settings.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import com.ark.globe.filehandling.FilePicker
import com.ark.globe.fragments.locations.LocationsViewModel
import com.ark.globe.fragments.ui.PathPreference
import com.ark.globe.preferences.GlobePreferences
import space.taran.arkfilepicker.presentation.onArkPathPicked
import dev.arkbuilders.arkfilepicker.presentation.onArkPathPicked

class Settings : PreferenceFragmentCompat() {

Expand Down

0 comments on commit 56f0f20

Please sign in to comment.