Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.1'
classpath 'com.android.tools.build:gradle:8.6.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand All @@ -25,9 +25,9 @@ apply plugin: 'kotlin-android'
android {
defaultConfig {
applicationId "ru.nsu.bobrofon.easysshfs"
compileSdk 34
compileSdk 35
minSdkVersion 16
targetSdkVersion 34
targetSdkVersion 35
versionCode 94
versionName "0.5.15-dev"

Expand Down
2 changes: 2 additions & 0 deletions app/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ android.nonFinalResIds=false
android.nonTransitiveRClass=false
android.useAndroidX=true
org.gradle.jvmargs=-Xmx768m -XX:MaxMetaspaceSize=512m
# ndk is not actually used by this project
android.ndk.suppressMinSdkVersionError=21
2 changes: 1 addition & 1 deletion app/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class EditFragment : EasySSHFSFragment() {
}
} else {
if (optionList.last() == "reconnect") {
optionList.removeLast()
optionList.removeLastOrNull()
}
}

Expand Down Expand Up @@ -221,6 +221,7 @@ class EditFragment : EasySSHFSFragment() {
EasySSHFSActivity.showToast(message, context)
}

@RequiresApi(Build.VERSION_CODES.LOLLIPOP)
private val localDirPicker =
registerForActivityResult(OpenDocumentTree()) { uri: Uri? ->
uri?.let { setLocalPath(it) }
Expand Down
Loading