Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ypliang19/crashsight

CrashSight
https://github.com/ypliang19/crashsight

Last synced: about 1 month ago
JSON representation

CrashSight

Awesome Lists containing this project

README

        

# CrashSight
详细文档请参考: https://crashsight.qq.com/docs/zh/crashsight/sdkDocuments/mobile-sdk.html

## Installation
### CocoaPods
1. Add `pod 'CrashSight'` to your Podfile.
* Run `pod install` or `pod update`.
* Import ``

## Usage
### Objective-C

1. `#import `
2. `Initiate CrashSight`

```objc

CrashSightConfig *config = [[CrashSightConfig alloc] init];
config.debugMode = YES;
config.crashServerUrl = @"https://ios.crashsight.qq.com/rqd/pb/sync";
[CrashSight startWithAppId:@"you appid applied form crashsight" config:config]

```