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

EbizuPublisherSuperLite 0.1.0

EbizuPublisherSuperLite 0.1.0

License MIT
ReleasedLast Release Sep 2017

Maintained by IHsan HUsnul, Adhitya Mufqie, Ebizu Library.



  • By
  • Ebizu, Inc.

Introduction

The Ebizu Publisher SDK is a powerful plugin that you can add to your app to enable you to quickly connect and deploy campaigns

The Ebizu SDK is a powerful plugin that you can add to your app to enable you to quickly connect and deploy campaigns from the cloud, and enrich your apps with location.

Installation

Add Manually

1.1 To install the Ebizu SDK, download latest stable version of Ebizu SDK archive. Download Ebizu SDK

1.2. Xcode with the iOS development kit is required to build an iOS app using Ebizu SDK. For a better experience, we recommend XCode 8 or later

1.3. The SDK requires iOS 9.3 or later.

1.4. Open your project in Xcode.

1.5. Copy “EbizuPublisher.framework” to your project directory.

1.6. Make sure to Copy items into destination group's folder is selected.

1.7. Press the Finish button.

1.8. Ensure that you have added to your project the following dependent frameworks:

AdSupport.framework
CoreLocation.framework

Code Implementation

1.1 Initialize SDK Add following code to your AppDelegate.m

#import "AppDelegate.h"
#import <EbizuPublisher/EbizuPublisher.h>

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    [[EbizuManager sharedManager] setDebugMode:YES];
    [EbizuManager initWithAppID:@"YOUR APP ID" withDevelopmentMode:NO];

    return YES;
}

1.2 Login

    #import <EbizuPublisher/EbizuPublisher.h>
...
    EbizuUser *user = [[EbizuUser alloc] init];
    user.name = @"USER NAME";
    user.email = @"USER MAIL";
    user.gender = @"female/male";
    user.city = @"USER CITY";
    user.country = @"USER COUNTRY";
    
    [EbizuManager loginWithUser:user];

1.3 Start location

    #import <EbizuPublisher/EbizuPublisher.h>
...
    [EbizuManager start];

Question?

We’re always happy to help with the code or other questions you might have about the platform! You can email us directly at [email protected]