BugsnagApp

Objective-C


@interface BugsnagApp : NSObject

Swift

class BugsnagApp : NSObject

Stateless information set by the notifier about your app can be found on this class. These values can be accessed and amended if necessary.

  • The architecture of the running binary

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *binaryArch;

    Swift

    var binaryArch: String? { get set }
  • The bundle version used by the application

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *bundleVersion;

    Swift

    var bundleVersion: String? { get set }
  • The revision ID from the manifest (React Native apps only)

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *codeBundleId;

    Swift

    var codeBundleId: String? { get set }
  • Unique identifier for the debug symbols file corresponding to the application

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *dsymUuid;

    Swift

    var dsymUuid: String? { get set }
  • id

    The app identifier used by the application

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *id;

    Swift

    var id: String? { get set }
  • The release stage set in Configuration

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *releaseStage;

    Swift

    var releaseStage: String? { get set }
  • The application type set in Configuration

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *type;

    Swift

    var type: String? { get set }
  • The version of the application set in Configuration

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *version;

    Swift

    var version: String? { get set }