icodebuster / MoEngage-iOS-SDK

iOS SDK for app integrations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Logo

MoEngage-iOS-SDK

Version License CocoaPods

MoEngage provides a platform which enables companies to deliver personalized interactions to their users through push notifications, in-app campaigns, email campaigns and other re-targeting channels.

Integration

Integration through CocoaPods

CocoaPods is a dependency manager for Objective C & Swift projects and makes integration easier.

  1. If you don't have CocoaPods installed, you can do it by executing the following line in your terminal.

    sudo gem install cocoapods

  2. If you don't have a Podfile, create a plain text file named Podfile in the Xcode project directory with the following content, making sure to set the platform and version that matches your app.

    pod 'MoEngage-iOS-SDK'

  3. Install MoEngage SDK by executing the following in the Xcode project directory.

    pod install

  4. Now, open your project workspace and check if MoEngage SDK is properly added.

SDK Initialization

Login to your MoEngage account, go to Settings in the left panel of the dashboard. Under App Settings, you will find your APP ID. Provide this APP ID while initializing the SDK with initializeDevWithApiKey: and initializeProdWithApiKey: methods as shown below.

In Objective-C:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    // Separate initialization methods for Dev and Prod initializations

    #ifdef DEBUG
        [[MoEngage sharedInstance] initializeDevwithAppID:@"Your APP ID" withLaunchOptions:launchOption];
    #else
        [[MoEngage sharedInstance] initializeProdwithAppID:@"Your APP ID" withLaunchOptions:launchOption];
    #endif
    
    //Rest of the implementation of method
    //-------
}

In Swift:

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions:     [UIApplicationLaunchOptionsKey: Any]?) -> Bool {

    // Separate initialization methods for Dev and Prod initializations

    #if DEBUG
        MoEngage.sharedInstance().initializeDev(withAppID:"Your APP ID", withLaunchOptions: launchOptions)
    #else
        MoEngage.sharedInstance().initializeProd(withAppID:"Your APP ID", withLaunchOptions: launchOptions)
    #endif
    
    //Rest of the implementation of method
    //-------
}

Thats it!! SDK is successfully integrated and initialized in the project, and ready to use.

Developer Docs

Please refer to our developer docs to know how to make use of our SDK to track Events and User Attributes, to implement Push Notification and InApps: https://docs.moengage.com/docs/sdk-integration.

Change Log

See SDK Change Log for information on every released version.

Support

Please visit this repository's Github issue tracker for bug reports specific to our iOS SDK. For other issues and support please contact MoEngage support from your dashboard.

About

iOS SDK for app integrations

License:Other


Languages

Language:Objective-C 93.1%Language:Ruby 6.9%