CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.

HQAClient 0.1.6

HQAClient 0.1.6

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Nov 2015

Maintained by Sunghoon Kang.



 
Depends on:
AFNetworking~> 2.3
JSONKit-NoWarning~> 1.2
KeychainItemWrapper~> 1.2
Reachability~> 3.2
 

HQAClient 0.1.6

Overview

iOS Client for open source crash report service honeyqa

Installation

Available through CocoaPods.

pod 'HQAClient'

Usage

  1. Initialize in didFinishLaunchingWithOptions (AppDelegate)

    [HQAClient sharedControllerWithAPIKey:@"YOUR_API_Key"]

  2. If Application crashed, HQAClient will send crash data to HoneyQA Server
  3. Or, you can send exception information manually by using

    [HQAClient logException:(NSException *)]

    [HQAClient logException:(NSException *) withTag:@"Tag name"]

    [HQAClient logException:(NSException *) withTag:@"Tag name" andErrorRank:(HQAErrorRank)]

  4. If you using leaveBreadcrumb, you can track user pattern untill application crash or exception

    [HQAClient leaveBreadcrumb:(Integer : Linenumber)]

    [HQAClient logException:(NSException *)]

    [HQAClient logException:(NSException *)]

iOS 9


Please edit your .plist file for send crash data to honeyqa server.

There are 2 options,

  • add Dictionary named NSAppTransportSecurity
    • add Boolean | Yes NSAllowsArbitraryLoads to NSAppTransportSecurity
    • Or, add Dictionary named NSExceptionDomains to NSAppTransportSecurity
      • then, add Dictionary named api3.honeyqa.io to NSExceptionDomains

route

  • Session
    • /api/ios/client/session
  • Exception
    • /api/ios/client/exception

Exception Data

  • buildid : Symbol UUID
  • hqaData
    • arch : Object
      • osName : String
        • device OS name
      • codeType : String
        • architecture information
    • process : Object
      • processPath : String
        • for extract Application name
    • register : Object
      • register name : register value
        • String : String
    • thread : Array
      • Object
        • frame : Array
          • Object
            • imageName : String
            • baseAddress : String
              • [!] when symbol information is not null, object will not contain baseAddress
            • symbolName : String
              • [!] when symbol information is null, object will not contain symbolName
            • frameIndex : String
            • offset : String
        • isCrashed : String
          • "1" : crashed
          • "0" : not crashed

Symbolication

Open Source License

UrQA-iOS

The MIT License (MIT)

Copyright (c) urqa org

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.