Skip to content

How to enable logging on iOS

Olga Koroleva edited this page Oct 20, 2022 · 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"]
        )));
Clone this wiki locally