mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 23:38:57 +01:00
Merge branch 'master' into set
This commit is contained in:
commit
8b4793419b
2 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
|
@ -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 (
|
||||
|
|
Loading…
Add table
Reference in a new issue