Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android {
applicationId = "ltd.grunt.brainwallet"
minSdk = 29
targetSdk = 34
versionCode = 202505121
versionCode = 202505141
versionName = "v4.5.0"

multiDexEnabled = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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/";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}
)
}
Expand Down