mirror of
https://github.com/wahyd4/Yep.git
synced 2026-08-29 06:36:22 +10:00
104 lines
3.0 KiB
Objective-C
104 lines
3.0 KiB
Objective-C
//
|
|
// CLSReport.h
|
|
// Crashlytics
|
|
//
|
|
// Copyright (c) 2015 Crashlytics, Inc. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <Fabric/FABAttributes.h>
|
|
|
|
FAB_START_NONNULL
|
|
|
|
/**
|
|
* The CLSCrashReport protocol is deprecated. See the CLSReport class and the CrashyticsDelegate changes for details.
|
|
**/
|
|
@protocol CLSCrashReport <NSObject>
|
|
|
|
@property (nonatomic, copy, readonly) NSString *identifier;
|
|
@property (nonatomic, copy, readonly) NSDictionary *customKeys;
|
|
@property (nonatomic, copy, readonly) NSString *bundleVersion;
|
|
@property (nonatomic, copy, readonly) NSString *bundleShortVersionString;
|
|
@property (nonatomic, copy, readonly) NSDate *crashedOnDate;
|
|
@property (nonatomic, copy, readonly) NSString *OSVersion;
|
|
@property (nonatomic, copy, readonly) NSString *OSBuildVersion;
|
|
|
|
@end
|
|
|
|
/**
|
|
* The CLSReport exposes an interface to the phsyical report that Crashlytics has created. You can
|
|
* use this class to get information about the event, and can also set some values after the
|
|
* event has occured.
|
|
**/
|
|
@interface CLSReport : NSObject <CLSCrashReport>
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
/**
|
|
* Returns the session identifier for the report.
|
|
**/
|
|
@property (nonatomic, copy, readonly) NSString *identifier;
|
|
|
|
/**
|
|
* Returns the custom key value data for the report.
|
|
**/
|
|
@property (nonatomic, copy, readonly) NSDictionary *customKeys;
|
|
|
|
/**
|
|
* Returns the CFBundleVersion of the application that generated the report.
|
|
**/
|
|
@property (nonatomic, copy, readonly) NSString *bundleVersion;
|
|
|
|
/**
|
|
* Returns the CFBundleShortVersionString of the application that generated the report.
|
|
**/
|
|
@property (nonatomic, copy, readonly) NSString *bundleShortVersionString;
|
|
|
|
/**
|
|
* Returns the date that the report was created.
|
|
**/
|
|
@property (nonatomic, copy, readonly) NSDate *dateCreated;
|
|
|
|
/**
|
|
* Returns the os version that the application crashed on.
|
|
**/
|
|
@property (nonatomic, copy, readonly) NSString *OSVersion;
|
|
|
|
/**
|
|
* Returns the os build version that the application crashed on.
|
|
**/
|
|
@property (nonatomic, copy, readonly) NSString *OSBuildVersion;
|
|
|
|
/**
|
|
* Returns YES if the report contains any crash information. If the report
|
|
* contains only NSErrors, this will return NO.
|
|
**/
|
|
@property (nonatomic, assign, readonly) BOOL isCrash;
|
|
|
|
/**
|
|
* You can use this method to set, after the event, additional custom keys. The rules
|
|
* and semantics for this method are the same as those documented in Crashlytics.h. Be aware
|
|
* that the maximum size and count of custom keys is still enforced, and you can overwrite keys
|
|
* and/or cause excess keys to be deleted by using this method.
|
|
**/
|
|
- (void)setObjectValue:(id FAB_NULLABLE)value forKey:(NSString *)key;
|
|
|
|
/**
|
|
* Record an application-specific user identifier. See Crashlytics.h for details.
|
|
**/
|
|
@property (nonatomic, copy) NSString * FAB_NULLABLE userIdentifier;
|
|
|
|
/**
|
|
* Record a user name. See Crashlytics.h for details.
|
|
**/
|
|
@property (nonatomic, copy) NSString * FAB_NULLABLE userName;
|
|
|
|
/**
|
|
* Record a user email. See Crashlytics.h for details.
|
|
**/
|
|
@property (nonatomic, copy) NSString * FAB_NULLABLE userEmail;
|
|
|
|
@end
|
|
|
|
FAB_END_NONNULL
|