Skip to content

Commit

Permalink
Fix crash on android 6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kylecorry31 committed Jul 20, 2024
1 parent 9b48147 commit 1aaeda9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ android {
applicationId = "com.kylecorry.trail_sense"
minSdk = 23
targetSdk = 35
versionCode = 121
versionName = "6.2.0"
versionCode = 122
versionName = "6.2.1"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
Expand Down
5 changes: 3 additions & 2 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,13 @@
app:flexWrap="wrap"
app:justifyContent="center" />

<View
<ImageView
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:background="?android:textColorSecondary" />
android:src="@drawable/rectangle"
app:tint="?android:textColorSecondary" />

<com.google.android.flexbox.FlexboxLayout
android:id="@+id/quick_actions"
Expand Down
15 changes: 15 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/122.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Packing Lists
- Import and export packing lists

Whistle
- Improve whistle sound

Tools
- Show quick actions for current tool when long pressing the bottom bar

User Guide
- Added quick action to show the guide for the current tool

Settings
- Added quick action to show the settings for the current tool
- Barometer calibration

0 comments on commit 1aaeda9

Please sign in to comment.