CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.
TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | Commercial |
ReleasedLast Release | Jul 2017 |
Maintained by Karumi.
iOS SDK to collect performance metrics easily using FlowUp
Podfile
:pod 'FlowUpIOSSDK', '~> 0.0.3'
AppDelegate
implementation, right from the application:didFinishLaunchingWithOptions:
method:// 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
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.
Did you find an issue? Create a ticket and we will take care as soon as possible.