diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 172a0a87..8add0963 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -20,7 +20,7 @@ android { applicationId = "ltd.grunt.brainwallet" minSdk = 29 targetSdk = 34 - versionCode = 202505121 + versionCode = 202505141 versionName = "v4.5.0" multiDexEnabled = true diff --git a/app/src/main/java/com/brainwallet/tools/util/BRConstants.java b/app/src/main/java/com/brainwallet/tools/util/BRConstants.java index 1c4d4a53..7c989533 100644 --- a/app/src/main/java/com/brainwallet/tools/util/BRConstants.java +++ b/app/src/main/java/com/brainwallet/tools/util/BRConstants.java @@ -98,6 +98,7 @@ private BRConstants() { public static final String TWITTER_LINK = "https://twitter.com/Brainwallet_App"; public static final String INSTAGRAM_LINK = "https://www.instagram.com/brainwalletapp"; public static final String WEB_LINK = "https://brainwallet.co"; + public static final String SUPPORT_WEB_LINK = "https://brainwallet.co/support.html"; public static final String TOS_LINK = "https://brainwallet.co/privacy-policy.html"; public static final String MOBILE_MP_LINK = "https://brainwallet.co/mobile-top-up.html"; public static String BITREFILL_AFFILIATE_LINK = "https://www.bitrefill.com/"; diff --git a/app/src/main/java/com/brainwallet/ui/screens/home/composable/HomeSettingDrawerSheet.kt b/app/src/main/java/com/brainwallet/ui/screens/home/composable/HomeSettingDrawerSheet.kt index 5c0c6a9c..1daa4b33 100644 --- a/app/src/main/java/com/brainwallet/ui/screens/home/composable/HomeSettingDrawerSheet.kt +++ b/app/src/main/java/com/brainwallet/ui/screens/home/composable/HomeSettingDrawerSheet.kt @@ -144,11 +144,11 @@ fun HomeSettingDrawerSheet( item { SettingRowItem( title = stringResource(R.string.settings_title_support), - description = "brainwallet.co", + description = "brainwallet.co/support.html", onClick = { val builder = CustomTabsIntent.Builder() val customTabsIntent = builder.build() - customTabsIntent.launchUrl(context, Uri.parse(BRConstants.WEB_LINK)) + customTabsIntent.launchUrl(context, Uri.parse(BRConstants.SUPPORT_WEB_LINK)) } ) }