mParticle_Extended 4.5.5

mParticle_Extended 4.5.5

TestsTested
LangLanguage Obj-CObjective C
License Commercial
ReleasedLast Release Jan 2016

Maintained by Peter Jenkins, Sam Dozor.



mParticle SDK Extended

Your job is to build an awesome app experience that consumers love. You also need several tools and services to make data-driven decisions. Like most app owners, you end up implementing and maintaining numerous SDKs ranging from analytics, attribution, push notification, remarketing, monetization, etc. But embedding multiple 3rd party libraries creates a number of unintended consequences and hidden costs. From not being able to move as fast as you want, to bloating and destabilizing your app, to losing control and ownership of your 1st party data.

mParticle solves all these problems with one lightweight SDK. Implement new partners without changing code or waiting for app store approval. Improve stability and security within your app. We enable our clients to spend more time innovating and less time integrating.

Installation

Add the following to your Podfile:

pod 'mParticle_Extended', '~> 4'

Initialize the SDK

Call the startWithKey method within the application did finish launching delegate call. The mParticle SDK must be initialized with your app key and secret prior to use.

Swift

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
    MParticle.sharedInstance().startWithKey("<<<App Key Here>>>", secret:"<<<App Secret Here>>>")

    return true
}

Objective-C

#import <mParticle.h>

- (BOOL)application:(UIApplication *)application
        didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [[MParticle sharedInstance] startWithKey:@"<<<App Key Here>>>"
                                      secret:@"<<<App Secret Here>>>"];

    return YES;
}

Documentation

Detailed documentation and other information about mParticle SDK can be found at: http://docs.mparticle.com

Author

mParticle, Inc.

Support

[email protected]

License

mParticle is available under the mParticle license. See the LICENSE file for more info.