Skip to content

Commit ded6ab7

Browse files
committed
Fix google play flavor.
Update version.
1 parent 8c6de4d commit ded6ab7

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

bitcoin/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ android {
1515
applicationId = "com.brentpanther.bitcoinwidget"
1616
minSdk = 23
1717
targetSdk = 35
18-
versionCode = 334
19-
versionName = "8.5.9"
18+
versionCode = 335
19+
versionName = "8.6.0"
2020
}
2121

2222
buildFeatures {

bitcoin/src/playstore/java/com/brentpanther/bitcoinwidget/ui/home/AdditionalGlobalSettings.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package com.brentpanther.bitcoinwidget.ui.home
22

33
import android.content.ActivityNotFoundException
44
import android.content.Intent
5-
import androidx.compose.material.Icon
6-
import androidx.compose.material.Text
5+
import androidx.compose.material3.Icon
6+
import androidx.compose.material3.Text
77
import androidx.compose.runtime.Composable
88
import androidx.compose.ui.platform.LocalContext
99
import androidx.compose.ui.res.painterResource
@@ -27,7 +27,7 @@ fun AdditionalSettings() {
2727
try {
2828
val uri = "http://play.google.com/store/apps/details?id=${context.packageName}".toUri()
2929
ContextCompat.startActivity(context, Intent(Intent.ACTION_VIEW, uri), null)
30-
} catch (ignored: ActivityNotFoundException) {
30+
} catch (_: ActivityNotFoundException) {
3131
}
3232
}
3333
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Material 3 upgrade.
2+
Updated for Android 15.
3+
Improved compatibility with certain launchers.
4+
Better error handling.
5+
Update Bibox API.

0 commit comments

Comments
 (0)