Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ypliang19/crashsight
CrashSight
https://github.com/ypliang19/crashsight
Last synced: about 1 month ago
JSON representation
CrashSight
- Host: GitHub
- URL: https://github.com/ypliang19/crashsight
- Owner: YPLiang19
- Created: 2022-08-18T09:26:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-10T08:32:28.000Z (9 months ago)
- Last Synced: 2024-04-10T11:19:37.600Z (9 months ago)
- Language: Objective-C
- Size: 13.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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-C1. `#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]```