Packagecom.myflashlab.air.extensions.firebase.crash
Classpublic class Crash
InheritanceCrash Inheritance Object

Deprecated by Google, Please use Crashlytics from now on. Firebase Crash reporting API. The API is automatically initialized by FirebaseApp. To attach log messages to a crash report, use the log method at points during execution that will best help you know what happened prior to the crash.



Public Properties
 PropertyDefined By
  crashCollectionEnabled : Boolean
[static] Determine whether crash reporting is enabled or disabled.
Crash
Public Methods
 MethodDefined By
  
crash():void
[static] Call this method to generate a crash report in your app!
Crash
  
log($message:String):void
[static] Logs a message that will appear in a subsequent crash report.
Crash
Public Constants
 ConstantDefined By
  EXTENSION_ID : String = com.myflashlab.air.extensions.firebase.crash
[static]
Crash
Property Detail
crashCollectionEnabledproperty
crashCollectionEnabled:Boolean

Determine whether crash reporting is enabled or disabled.

By default, crash reporting is enabled. If you need to change the default (for example, because you want to prompt the user before collecting crashes), add <meta-data android:name=firebase_crash_collection_enabled android:value=false/> to your application's manifest.


Implementation
    public static function get crashCollectionEnabled():Boolean
    public static function set crashCollectionEnabled(value:Boolean):void
Method Detail
crash()method
public static function crash():void

Call this method to generate a crash report in your app!

log()method 
public static function log($message:String):void

Logs a message that will appear in a subsequent crash report.

Parameters

$message:String — the message to log

Constant Detail
EXTENSION_IDConstant
public static const EXTENSION_ID:String = com.myflashlab.air.extensions.firebase.crash