Skip to content

Commit

Permalink
Merge pull request #54 from bobrofon/api-34
Browse files Browse the repository at this point in the history
Api 34
  • Loading branch information
bobrofon authored Jul 20, 2024
2 parents 5b084d7 + 5a16d38 commit 5efe967
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 11 deletions.
16 changes: 10 additions & 6 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.0.1'
classpath 'com.android.tools.build:gradle:8.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand All @@ -23,14 +23,13 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 33

defaultConfig {
applicationId "ru.nsu.bobrofon.easysshfs"
compileSdk 34
minSdkVersion 16
targetSdkVersion 33
versionCode 85
versionName "0.5.11"
targetSdkVersion 34
versionCode 86
versionName "0.5.12-dev"

externalNativeBuild {
cmake {
Expand Down Expand Up @@ -66,6 +65,11 @@ android {
targetCompatibility JavaVersion.VERSION_17
}
namespace 'ru.nsu.bobrofon.easysshfs'
packagingOptions {
jniLibs {
useLegacyPackaging true
}
}
}

dependencies {
Expand Down
1 change: 0 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
<application
android:allowBackup="false"
android:dataExtractionRules="@xml/data_extraction_rules"
android:extractNativeLibs="true"
android:fullBackupContent="@xml/full_backup_content"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import androidx.core.content.ContextCompat
import androidx.drawerlayout.widget.DrawerLayout
import androidx.lifecycle.ViewModelProvider
import com.topjohnwu.superuser.Shell
import ru.nsu.bobrofon.easysshfs.log.AppLog
import ru.nsu.bobrofon.easysshfs.log.LogFragment
import ru.nsu.bobrofon.easysshfs.mountpointlist.MountPointsList
import ru.nsu.bobrofon.easysshfs.mountpointlist.MountpointFragment
Expand Down Expand Up @@ -56,6 +57,10 @@ class EasySSHFSActivity : AppCompatActivity(), NavigationDrawerFragment.Navigati
)
)[EasySSHFSViewModel::class.java]

AppLog.instance().addMessage(
"EasySSHFS ${BuildConfig.VERSION_NAME} "
+ "(${BuildConfig.VERSION_CODE}) ${BuildConfig.BUILD_TYPE}"
)
VersionUpdater(applicationContext).update()

setContentView(R.layout.activity_easy_sshfs)
Expand Down
2 changes: 1 addition & 1 deletion sshfs-static/configs/sshfs-static-arm64-v8a.config
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ BR2_ARM_FPU_FP_ARMV8=y
#
# Commands
#
BR2_WGET="wget --passive-ftp -nd -t 3"
BR2_WGET="wget -nd -t 3"
BR2_SVN="svn --non-interactive"
BR2_BZR="bzr"
BR2_GIT="git"
Expand Down
2 changes: 1 addition & 1 deletion sshfs-static/configs/sshfs-static-armeabi-v7a.config
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ BR2_ARM_INSTRUCTIONS_THUMB2=y
#
# Commands
#
BR2_WGET="wget --passive-ftp -nd -t 3"
BR2_WGET="wget -nd -t 3"
BR2_SVN="svn --non-interactive"
BR2_BZR="bzr"
BR2_GIT="git"
Expand Down
2 changes: 1 addition & 1 deletion sshfs-static/configs/sshfs-static-x86.config
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ BR2_x86_i686=y
#
# Commands
#
BR2_WGET="wget --passive-ftp -nd -t 3"
BR2_WGET="wget -nd -t 3"
BR2_SVN="svn --non-interactive"
BR2_BZR="bzr"
BR2_GIT="git"
Expand Down
2 changes: 1 addition & 1 deletion sshfs-static/configs/sshfs-static-x86_64.config
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ BR2_x86_x86_64=y
#
# Commands
#
BR2_WGET="wget --passive-ftp -nd -t 3"
BR2_WGET="wget -nd -t 3"
BR2_SVN="svn --non-interactive"
BR2_BZR="bzr"
BR2_GIT="git"
Expand Down

0 comments on commit 5efe967

Please sign in to comment.