Skip to content

How to enable logging on iOS

Alexander Boldyrev edited this page Oct 25, 2024 · 2 revisions

To enable logging on iOS parameter logging: true in iosSettings needs to be provided to initialization configuration, as in the Example App

InfobipMobilemessaging.init(Configuration(
    applicationCode: '<Your Application Code>',
    iosSettings: IOSSettings(
        logging: true,
        notificationTypes: ['alert', 'badge', 'sound'],
        )));