TestsTested | ✓ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Mirko Olsiewicz, Applogger SDK.
Depends on: | |
CocoaAsyncSocket | ~> 7.3.4 |
CocoaLumberjack | >= 0 |
NSLogger | >= 0 |
AZSocketIO-HandShakeData | = 0.0.6 |
The official iOS SDK for the applogger.io service (Releases are in the master branch) https://applogger.io
The SDK needs to be configured and connected with a specific app you generated in the applogger.io dashboard. The following lines should be added to the application:didfinishLaunchingWithOptions: method
[[ApploggerManager sharedApploggerManager] setApplicationIdentifier:@"<AppIdentifier>" AndSecret:@"<AppSecret>"];
The needed information can be found on the application details page as text or via QR Code. Check out our demo application from the Apple app store.
applogger.io will never send logfiles behind your back. It starts sending logs with the following call:
[[ApploggerManager sharedApploggerManager]
startSessionWithCompletion:^(BOOL successfull, NSError *error){
The log stream will be interrupted when no watcher on the other side is checking the data to respect you data plan when using applogger.io on the road. It also stops sending when the application goes to the background or you just call the following API:
[[ApploggerManager sharedApploggerManager] stopSessionWithCompletion:^(BOOL successfull, NSError *error){
applogger.io is a service which allows to watch log information and screenshots directly from your webbrowser without any need to connect a mobile device via USB cable to a computer. This is good when you need to support user which are not right next to your office, e.g. every customer who is using your app or crowd testers when you are in a heavy beta phase.
The following documentation gives you an in deep documentation about the different capabilities the iOS SDK offers iOS clients, e.g. iPhone or iPad. If you have any questions or feature requests just use our support portal.
The following information will be explained in detail in our wiki. Please check the wiki pages for this by starting here.
Scenarios explained
How-To integrate
Log-Framework Plugins
apploggerSDK is available under the MIT license. See the LICENSE file for more info.