Skip to content

Commit

Permalink
Fix google play flavor.
Browse files Browse the repository at this point in the history
Update version.
  • Loading branch information
hwki committed Oct 29, 2024
1 parent 8c6de4d commit ded6ab7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bitcoin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {
applicationId = "com.brentpanther.bitcoinwidget"
minSdk = 23
targetSdk = 35
versionCode = 334
versionName = "8.5.9"
versionCode = 335
versionName = "8.6.0"
}

buildFeatures {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package com.brentpanther.bitcoinwidget.ui.home

import android.content.ActivityNotFoundException
import android.content.Intent
import androidx.compose.material.Icon
import androidx.compose.material.Text
import androidx.compose.material3.Icon
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.res.painterResource
Expand All @@ -27,7 +27,7 @@ fun AdditionalSettings() {
try {
val uri = "http://play.google.com/store/apps/details?id=${context.packageName}".toUri()
ContextCompat.startActivity(context, Intent(Intent.ACTION_VIEW, uri), null)
} catch (ignored: ActivityNotFoundException) {
} catch (_: ActivityNotFoundException) {
}
}
)
Expand Down
5 changes: 5 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/335.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Material 3 upgrade.
Updated for Android 15.
Improved compatibility with certain launchers.
Better error handling.
Update Bibox API.

0 comments on commit ded6ab7

Please sign in to comment.