Merge branch 'master' into set

This commit is contained in:
Marcos Rodriguez Velez 2024-10-31 15:23:07 -04:00
commit 8b4793419b
2 changed files with 3 additions and 2 deletions

View file

@ -23,7 +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("android") do
Dir.chdir(project_root) do
UI.message("Creating keystore from HEX...")
File.write("bluewallet-release-key.keystore.hex", keystore_file_hex)

View file

@ -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 (