Skip to content

Commit

Permalink
15
Browse files Browse the repository at this point in the history
  • Loading branch information
pyamsoft committed Dec 28, 2022
1 parent 6f6b948 commit 04537b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ android {
applicationId "com.pyamsoft.tetherfi"
minSdkVersion rootProject.ext.minSdk
targetSdkVersion rootProject.ext.targetSdk
versionCode 14
versionName "20221211-4"
versionCode 15
versionName "20221228-1"

// For vector drawables
vectorDrawables.useSupportLibrary = true
Expand Down
6 changes: 1 addition & 5 deletions app/src/main/java/com/pyamsoft/tetherfi/main/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,6 @@ class MainActivity : AppCompatActivity() {
}
}

private fun handleOpenApplicationSettings() {
SettingsDialog.show(this)
}

override fun onCreate(savedInstanceState: Bundle?) {
// NOTE(Peter):
// Not full Compose yet
Expand Down Expand Up @@ -95,7 +91,7 @@ class MainActivity : AppCompatActivity() {
MainTopBar(
appName = appName,
selected = selected,
onSettingsOpen = { handleOpenApplicationSettings() },
onSettingsOpen = { SettingsDialog.show(this) },
onTabSelected = { navi.navigateTo(it) },
)
}
Expand Down

0 comments on commit 04537b1

Please sign in to comment.