Skip to content

airnativeextensions/ANE-CrashUtils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CrashUtils

The CrashUtils extension gives you access to crash logs from previous terminations of your application.

Features

  • Improve app quality by processing your application crashes
  • Single API interface - your code works across supported platforms with no modifications
  • Sample project code and ASDocs reference

Documentation

The documentation site forms the best source of detailed documentation for the extension along with the asdocs.

Quick Example:

var reasons:Array = CrashUtils.service.getHistoricalProcessExitReasons();
for each (var reason:ApplicationExitInfo in reasons)
{
    trace( "Reason: " + reason.reason );
    trace( "Description: " + reason.description );
    trace( "Trace: " + reason.traceInputStream );
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published