Versions Compared

Key

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

...

Add the following to your podfile:

 

Code Block
languageruby
titleCocoa pods
target 'project_name' do   

...


 pod 'AppoxeeSDK'

...


end

run ‘’pod update’’

Code Block
languagebash
titleBash
 ''pod update''

 

Manual Adding the mobile push SDK:

1.

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