Login
Welcome
Login

Crash monitoring

On this page


Note

Only available since v4.7.0

The Teads SDK now handles a crash monitoring feature.

Along with user experience, one of the biggest challenges an app editor has to overcome is stability.

Different tools already exist in order to help the app's owner to monitor failures that could happen live (Crashlytics).

As a dependency editor, we had no way to measure and improve the efficiency of our library which is one of the many bricks constituting the publisher app. 

Thanks to this new feature, we will now have visibility on potential issues happening live and proactively take action.

Important

Teads SDK integrates a crash handling solution

  • Catch crash that comes from our SDK, not from your app
  • Do not disturb third party crash handler such as Crashlytics

Prerequisites

To ensure the crash handler is ready to catch crashes you need to initialize Teads handler.

Teads.configure()

Disable crash monitoring

To prevent Teads SDK to automatically handle crashes you can choose to disable crash monitoring by Teads SDK just call disableCrashMonitoring in adSettings.

let teadsAdSettings = TeadsAdSettings(build: { (settings) in
settings.disableCrashMonitoring()
})

To prevent Teads SDK to automatically handle crashes you can choose to disable crash monitoring by Teads SDK just call disableCrashMonitoring:

AdSettings.Builder adSettingsBuilder = new AdSettings.Builder();
adSettingsBuilder.disableCrashMonitoring();
adView.load(adSettingBuilder.build());

Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.