From de912c4434c0e4fc5c7fbb242c584f668c179281 Mon Sep 17 00:00:00 2001 From: Philipp Walter Date: Tue, 11 Jun 2024 12:59:49 +0200 Subject: [PATCH] fix(ui): update share text & link (#1976) --- src/constants/app.ts | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/constants/app.ts b/src/constants/app.ts index f0d30a5a4..aee82adbc 100644 --- a/src/constants/app.ts +++ b/src/constants/app.ts @@ -2,12 +2,8 @@ import { Platform } from 'react-native'; import { getBundleId } from 'react-native-device-info'; export const appName = 'Bitkit'; -const appleAppId = '6443905609'; -const androidPackageName = getBundleId(); +const appStoreUrl = 'https://apps.apple.com/app/bitkit-wallet/id6502440655'; +const playStoreUrl = `https://play.google.com/store/apps/details?id=${getBundleId()}`; +const storeUrl = Platform.OS === 'ios' ? appStoreUrl : playStoreUrl; -const appStoreUrl = - Platform.OS === 'ios' - ? `https://apps.apple.com/us/app/bitkit/id${appleAppId}` - : `https://play.google.com/store/apps/details?id=${androidPackageName}`; - -export const shareText = `Download Bitkit, Your Ultimate Bitcoin Toolkit. Handing you the keys to reshape your digital life. ${appStoreUrl}`; +export const shareText = `Download Bitkit, a self-custodial wallet powering lightning-fast bitcoin payments. Hold your keys, unlock your sovereignty. ${storeUrl}`;