Skip to content

Commit

Permalink
Fix: Close app on back-press.
Browse files Browse the repository at this point in the history
  • Loading branch information
thetwom committed Oct 6, 2022
1 parent f8dd88e commit 0cbe64e
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "de.moekadu.tuner"
minSdkVersion 23
targetSdkVersion 33
versionCode 21
versionName "5.1.0"
versionCode 22
versionName "5.1.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/java/de/moekadu/tuner/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ class MainActivity : AppCompatActivity() {
supportFragmentManager.popBackStack()
} else if (!isCurrentFragmentATunerFragment()){
loadSimpleOrScientificFragment()
} else {
finish()
}
}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {

}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath 'com.android.tools.build:gradle:7.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand Down
9 changes: 9 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/22.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
v.5.1.0:
- Refactored icon
- Refactored note namings for non-12-note temperaments
- Czech translations (thanks to rockconqueror)
- Special setting to capture sound and save to wave
- Increase target SDK to 33

v.5.1.1:
- Fix: Close app on back-press
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip

0 comments on commit 0cbe64e

Please # to comment.