Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

 

Goal

To add the SDK to your app using XCode.

...

SDK4 is a newly designed SDK released in July 2016. SDK4 supports iOS versions 7.0 to 9.0 (and above). Built in an asynchronous manner, modeled, it uses the latest API from Apple which is easy to maintain, fully tested and highly dynamic. If you use a previous version of the iOS SDK, see Migration of existing customer for steps on migrating to the new SDK4.

Prerequisites

Procedure

You can integrate the SDK using Cocoapods or by manually copy paste of adding the SDK Cocoa podinto the app

Option 1- Cocoapod:

Add the following to your podfile: 

Code Block
languageruby
titleCocoa pods
target 'project_name' do   
 pod 'AppoxeeSDK'
end

...

Code Block
languagebash
titleBash
 pod update

 

Option 2 - Manual Adding the mobile push SDK:

1

Download the SDK from :

2.

Drag AppoxeeSDK.framework into you project, make sure it is copied.

2.

Open your AppDelegate.m file, and add the following import statement:

Code Block
#import <AppoxeeSDK/AppoxeeSDK.h>

3.

Add the following delegate notation (can also be added at AppDelegate.h):

Code Block
@interface AppDelegate() <AppoxeeDelegate>

@end

...