Registers and resolves a push MFA storage handle.
This function handles registration internally and returns a normalized storage configuration that can be passed to createPushClient({ storage }).
createPushClient({ storage })
Storage configuration parameters with platform-specific options
Optional
Optional logger configuration
A branded PushStorage handle with native storage id metadata
If the configuration is missing or invalid
import { configurePushStorage } from '@ping-identity/rn-storage';const pushStorage = configurePushStorage({ android: { keyAlias: 'push_key' }});// Pass to push client// createPushClient({ storage: pushStorage }); Copy
import { configurePushStorage } from '@ping-identity/rn-storage';const pushStorage = configurePushStorage({ android: { keyAlias: 'push_key' }});// Pass to push client// createPushClient({ storage: pushStorage });
Registers and resolves a push MFA storage handle.
This function handles registration internally and returns a normalized storage configuration that can be passed to
createPushClient({ storage }).