Members
# setAppSwitchEnabled
You can enable the option to switch apps when you shake your phone. If you set the option to true it will show a "Switch App" option in your screen that you can select to switch between different apps.
Example
externalCodeSetup.configApi.setAppSwitchEnabled(true);
# setCodeVerificationEnabled
You can use this hook to set the default behavior for when a user creates an account, the app navigates to the code verification screen where the user can enter the verification code.
Example
externalCodeSetup.configApi.setCodeVerificationEnabled(false);
# setGuestLoginEnabled
Toggles the guest login feature. This will override the setting found in BuddyBoss site > BuddyBoss App > Settings > General > Registration > Privacy. If set to true, it will always show "Continue without logging in" on the login screen.
Example
externalCodeSetup.configApi.setGuestLoginEnabled(true);
# setTrackPlayerEnabled
If enabled, app will initialize TrackPlayer from "react-native-track-player" package. You can get more information on react native track player https://github.com/DoubleSymmetry/react-native-track-player.
Example
externalCodeSetup.configApi.setTrackPlayerEnabled();