Java Code Examples for io.fabric.sdk.android.Fabric#getKit()
The following examples show how to use
io.fabric.sdk.android.Fabric#getKit() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Crashlytics.java From letv with Apache License 2.0 | 4 votes |
public static Crashlytics getInstance() { return (Crashlytics) Fabric.getKit(Crashlytics.class); }
Example 2
Source File: CrashlyticsCore.java From letv with Apache License 2.0 | 4 votes |
public static CrashlyticsCore getInstance() { return (CrashlyticsCore) Fabric.getKit(CrashlyticsCore.class); }
Example 3
Source File: CrashlyticsCore.java From letv with Apache License 2.0 | 4 votes |
static void recordLoggedExceptionEvent(String sessionId) { Answers answers = (Answers) Fabric.getKit(Answers.class); if (answers != null) { answers.onException(new LoggedException(sessionId)); } }
Example 4
Source File: CrashlyticsCore.java From letv with Apache License 2.0 | 4 votes |
static void recordFatalExceptionEvent(String sessionId) { Answers answers = (Answers) Fabric.getKit(Answers.class); if (answers != null) { answers.onException(new FatalException(sessionId)); } }