Skip to content

Commit 919d073

Browse files
committed
fix #431, automatically pick Internal at the storage picker, if the only option
1 parent c8f2dd7 commit 919d073

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ android {
5858
}
5959

6060
dependencies {
61-
implementation 'com.simplemobiletools:commons:5.32.27'
61+
implementation 'com.simplemobiletools:commons:5.33.9'
6262
implementation 'com.github.Stericson:RootTools:df729dcb13'
6363
implementation 'com.github.Stericson:RootShell:1.6'
6464
implementation 'com.alexvasilkov:gesture-views:2.5.2'

app/src/main/kotlin/com/simplemobiletools/filemanager/pro/fragments/ItemsFragment.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ class ItemsFragment : Fragment(), ItemOperationsListener, Breadcrumbs.Breadcrumb
529529

530530
override fun breadcrumbClicked(id: Int) {
531531
if (id == 0) {
532-
StoragePickerDialog(activity as SimpleActivity, currentPath, true) {
532+
StoragePickerDialog(activity as SimpleActivity, currentPath, context!!.config.enableRootAccess, true) {
533533
getRecyclerAdapter()?.finishActMode()
534534
openPath(it)
535535
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010

1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:4.1.1'
12+
classpath 'com.android.tools.build:gradle:4.1.2'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414

1515
// NOTE: Do not place your application dependencies here; they belong

0 commit comments

Comments
 (0)