as

Settings
Sign out
Notifications
Alexa
Amazonアプリストア
AWS
ドキュメント
Support
Contact Us
My Cases
開発
設計と開発
公開
リファレンス
サポート
アクセスいただきありがとうございます。こちらのページは現在英語のみのご用意となっております。順次日本語化を進めてまいりますので、ご理解のほどよろしくお願いいたします。

DevSettings

The DevSettings module exposes methods for customizing settings for developers in development.


Reference

Methods

addMenuItem

static addMenuItem(title: string, handler: () => any);

Add a custom menu item to the Dev Menu.

Parameters:

Name Type
title Required string
handler Required function

Example:

DevSettings.addMenuItem('Show Secret Dev Screen', () => {
  Alert.alert('Showing secret dev screen!');
});

reload

static reload(reason?: string): void;

Reload the application. Can be invoked directly or on user interaction.

Example:

<Button title="Reload" onPress={() => DevSettings.reload()} />

Last updated: Sep 30, 2025