Skip to content

Commit 71666fc

Browse files
committed
updating commons and gradle
1 parent d494350 commit 71666fc

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
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.29.1'
61+
implementation 'com.simplemobiletools:commons:5.29.14'
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/adapters/ItemsAdapter.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ class ItemsAdapter(activity: SimpleActivity, var listItems: MutableList<ListItem
202202
finishActMode()
203203
}
204204
}
205-
else -> RenameDialog(activity, paths) {
205+
else -> RenameDialog(activity, paths, false) {
206206
activity.runOnUiThread {
207207
listener?.refreshItems()
208208
finishActMode()

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ class ItemsFragment : Fragment(), ItemOperationsListener, Breadcrumbs.Breadcrumb
108108
}
109109

110110
mView.items_fastscroller.updateBubbleColors()
111-
mView.items_fastscroller.allowBubbleDisplay = true
112111
if (!isFirstResume) {
113112
refreshItems()
114113
}
@@ -161,7 +160,7 @@ class ItemsFragment : Fragment(), ItemOperationsListener, Breadcrumbs.Breadcrumb
161160
mView.apply {
162161
activity?.runOnUiThread {
163162
items_swipe_refresh?.isRefreshing = false
164-
mView.breadcrumbs.setBreadcrumb(currentPath)
163+
breadcrumbs.setBreadcrumb(currentPath)
165164
if (!forceRefresh && items.hashCode() == storedItems.hashCode()) {
166165
return@runOnUiThread
167166
}
@@ -173,8 +172,7 @@ class ItemsFragment : Fragment(), ItemOperationsListener, Breadcrumbs.Breadcrumb
173172
items_list.adapter = this
174173
}
175174

176-
items_fastscroller.allowBubbleDisplay = true
177-
items_fastscroller.setViews(items_list, mView.items_swipe_refresh) {
175+
items_fastscroller.setViews(items_list, items_swipe_refresh) {
178176
items_fastscroller.updateBubbleText(storedItems.getOrNull(it)?.getBubbleText(context, storedDateFormat, storedTimeFormat)
179177
?: "")
180178
}

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:3.6.3'
12+
classpath 'com.android.tools.build:gradle:4.0.0'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414

1515
// NOTE: Do not place your application dependencies here; they belong
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sun Mar 15 19:52:11 CET 2020
1+
#Fri Jun 19 20:19:02 CEST 2020
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip

0 commit comments

Comments
 (0)