-
Notifications
You must be signed in to change notification settings - Fork 274
Backendless push and file upload
bensmiley edited this page Mar 24, 2017
·
2 revisions
- Download and unzip the module
- Add the folder
Backendless
toChatSDK/ChatSDKModules
- Add the pod to the
Podfile
pod "ChatSDKModules/Backendless", :path => "../ChatSDKModules"
- Run
pod install
- Add your API details to the
info.plist
chat_sdk/
backendless/
app_id
app_secret
app_version
These details are available on the Backendless dashboard.
In the AppDelegate.m
add the following:
#import <ChatSDKModules/BBackendlessPushHandler.h>
Set the push handler in app: didFinishLaunchingWithOptions:
method:
adapter.push = [[BBackendlessPushHandler alloc] initWithAppKey:[BSettingsManager backendlessAppId] secretKey:[BSettingsManager backendlessSecretKey] versionKey:[BSettingsManager backendlessVersionKey]];
[adapter.push registerForPushNotificationsWithApplication:application launchOptions:launchOptions];
Make sure the following methods are added:
-(void) application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
[[BNetworkManager sharedManager].a.push application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
}
-(void) application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
[[BNetworkManager sharedManager].a.push application:application didReceiveRemoteNotification:userInfo];
}
In the AppDelegate.m
add the following:
#import <ChatSDKModules/BBackendlessUploadHandler.h>
Set the push handler in app: didFinishLaunchingWithOptions:
method:
adapter.upload = [[BBackendlessUploadHandler alloc] initWithAppKey:[BSettingsManager backendlessAppId] secretKey:[BSettingsManager backendlessSecretKey] versionKey:[BSettingsManager backendlessVersionKey]];
Note You only to
initWithAppKey: secretKey: versionKey:
once. If you are using both the Backendless file upload handler and the push handler, the second time you can just alloc/init. This is because both handlers use the same Backendless singleton and the keys only need to be set once.
// If you have already setup the push handler previously
adapter.upload = [[BBackendlessUploadHandler alloc] init];
For full instructions see the Module installation guide