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

FlowUpIOSSDK 0.0.3

FlowUpIOSSDK 0.0.3

TestsTested
LangLanguage Obj-CObjective C
License Commercial
ReleasedLast Release Jul 2017

Maintained by Karumi.



  • By
  • FlowUp

FlowUp iOS SDK

iOS SDK to collect performance metrics easily using FlowUp

Usage

  • Include the SDK in your Podfile:
pod 'FlowUpIOSSDK', '~> 0.0.3'
  • Initialize FlowUp from your AppDelegate implementation, right from the application:didFinishLaunchingWithOptions: method:
Objective-C
// YourAppDelegate.h
#import "FlowUp.h"

// YourAppDelegate.m
@implementation YourAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [FlowUp application:application
didFinishLaunchingWithOptions:launchOptions
                 apiKey:@"YOUR API KEY";
     isDebugModeEnabled:YES];
     return YES;
}
@end
Swift
import FlowUp

class YourAppDelegate: UIResponder, UIApplicationDelegate {
    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
        FlowUp.application(application,
                           didFinishLaunchingWithOptions: launchOptions,
                           apiKey: "YOUR API KEY",
                           isDebugModeEnabled: true)
        return true
    }
}

Remember to always disable the debug mode when building for release.

Reporting

Did you find an issue? Create a ticket and we will take care as soon as possible.