Skip to content

Commit 84bc826

Browse files
committed
update gradle and commons
1 parent 8afee1f commit 84bc826

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ android {
3232
}
3333

3434
dependencies {
35-
compile 'com.simplemobiletools:commons:2.13.7'
35+
compile 'com.simplemobiletools:commons:2.16.1'
3636
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
3737
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
3838
}

app/src/main/kotlin/com/simplemobiletools/filemanager/dialogs/CopyDialog.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ class CopyDialog(val activity: SimpleActivity, val files: ArrayList<File>, val c
6161
if (view.dialog_radio_group.checkedRadioButtonId == R.id.dialog_radio_copy) {
6262
context.toast(R.string.copying)
6363
val pair = Pair<ArrayList<File>, File>(files, destinationDir)
64-
CopyMoveTask(context, false, config.treeUri, false, copyMoveListener).execute(pair)
64+
CopyMoveTask(context, false, false, copyMoveListener).execute(pair)
6565
dismiss()
6666
} else {
6767
if (context.isPathOnSD(sourcePath) || context.isPathOnSD(destinationPath)) {
6868
activity.handleSAFDialog(files[0]) {
6969
context.toast(R.string.moving)
7070
val pair = Pair<ArrayList<File>, File>(files, destinationDir)
71-
CopyMoveTask(context, true, config.treeUri, false, copyMoveListener).execute(pair)
71+
CopyMoveTask(context, true, false, copyMoveListener).execute(pair)
7272
dismiss()
7373
}
7474
} else {

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.3.0'
8+
classpath 'com.android.tools.build:gradle:2.3.1'
99

1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files

0 commit comments

Comments
 (0)