MobileAppMessaging
MobileAppMessagingConfig
MobileAppMessagingInitializationStatus
DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
Package: com.salesforce.marketingcloud.mobileappmessaging
SDK Version: 11.0.0
The MobileAppMessagingInitializationStatus class provides detailed information about the initialization state of the MobileAppMessaging module. It reports the overall status, any errors encountered, and lists successfully initialized components.
1class MobileAppMessagingInitializationStatus1enum Status : Enum<MobileAppMessagingInitializationStatus.Status>An enumeration representing the overall initialization outcome for the module.
1val initializedComponents: List<String>A list containing the names of all components that were successfully initialized.
1val isUsable: BooleanIndicates whether the module can be used despite any initialization errors that may have occurred.
1val status: MobileAppMessagingInitializationStatus.StatusThe current initialization status of the module.
1val storageError: BooleanReturns true if storage initialization failed during the module setup process.
1val unrecoverableException: Throwable?Contains an unrecoverable exception that occurred during initialization, or null if no such exception was encountered.
This class is used to inspect the initialization state after attempting to initialize the MobileAppMessaging module, allowing developers to determine if the module is ready for use and diagnose any initialization issues.