From 0f818f6576a6f1390a05c73f882260fd5b140191 Mon Sep 17 00:00:00 2001 From: Marcos Rodriguez Velez Date: Thu, 31 Oct 2024 08:26:32 -0400 Subject: [PATCH 1/3] Update NotificationSettings.tsx --- screen/settings/NotificationSettings.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/screen/settings/NotificationSettings.tsx b/screen/settings/NotificationSettings.tsx index f7cdb8f25..bec876181 100644 --- a/screen/settings/NotificationSettings.tsx +++ b/screen/settings/NotificationSettings.tsx @@ -11,6 +11,7 @@ import ListItem, { PressableWrapper } from '../../components/ListItem'; import { useTheme } from '../../components/themes'; import loc from '../../loc'; import { Divider } from '@rneui/base'; +import { openSettings } from 'react-native-permissions'; const NotificationSettings: React.FC = () => { const [isLoading, setIsLoading] = useState(true); @@ -124,7 +125,7 @@ const NotificationSettings: React.FC = () => { }, [URI]); const onSystemSettings = () => { - Linking.openSettings(); + openSettings('notifications'); }; return ( From 01476156655e9b93e7ecda8235d7fddf51e02d67 Mon Sep 17 00:00:00 2001 From: Marcos Rodriguez Velez Date: Thu, 31 Oct 2024 09:05:47 -0400 Subject: [PATCH 2/3] Update Fastfile --- fastlane/Fastfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 051f2651b..a81d0a6bd 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -23,7 +23,6 @@ platform :android do keystore_file_hex = ENV['KEYSTORE_FILE_HEX'] UI.user_error!("KEYSTORE_FILE_HEX environment variable is missing") if keystore_file_hex.nil? - Dir.chdir("android") do UI.message("Creating keystore from HEX...") File.write("bluewallet-release-key.keystore.hex", keystore_file_hex) @@ -33,7 +32,6 @@ platform :android do UI.message("Keystore created successfully.") File.delete("bluewallet-release-key.keystore.hex") - end end desc "Update version, build number, and sign APK" From 5f2f70fe8f22e3cb566c508d363eadb4d9c6929c Mon Sep 17 00:00:00 2001 From: Marcos Rodriguez Velez Date: Thu, 31 Oct 2024 09:27:34 -0400 Subject: [PATCH 3/3] Update Fastfile --- fastlane/Fastfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index a81d0a6bd..5e8ef9418 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -23,6 +23,7 @@ platform :android do keystore_file_hex = ENV['KEYSTORE_FILE_HEX'] UI.user_error!("KEYSTORE_FILE_HEX environment variable is missing") if keystore_file_hex.nil? + Dir.chdir(project_root) do UI.message("Creating keystore from HEX...") File.write("bluewallet-release-key.keystore.hex", keystore_file_hex) @@ -32,6 +33,7 @@ platform :android do UI.message("Keystore created successfully.") File.delete("bluewallet-release-key.keystore.hex") + end end desc "Update version, build number, and sign APK"