Open AppDelegate.swift file Add required imports
import UserNotifications
import PPG_framework
Add initialization code to given functions
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
// Initialize PPG framework
PPG.initializeNotifications(projectId: "<your_app_id>", apiToken: "<your_api_token>")
// Register for push notifications if you do not already
PPG.registerForNotifications(application: application, handler: { result in
switch result {
case .error(let error):
// handle error
print(error)
return
case .success:
return
}
})
UNUserNotificationCenter.current().delegate = self
return true
}
func applicationDidBecomeActive(_ application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
PPG.sendEventsDataToApi()
}
func application(_ application: UIApplication,
didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
PPG.sendDeviceToken(deviceToken) { _ in }
}
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification,
withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
// Display notification when app is in foreground, optional
completionHandler([.alert, .badge, .sound])
}
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
// Send information about clicked notification to framework
PPG.notificationClicked(response: response)
// Open external link from push notification
// Remove this section if this behavior is not expected
guard let url = PPG.getUrlFromNotificationResponse(response: response)
else {
completionHandler()
return
}
UIApplication.shared.open(url)
//
completionHandler()
}
- Click on top item in your project hierarchy.
- Select your project on target list.
- Select
Signing & Capabilities. - You can add capability by clicking on
+ Capabilitybutton that is placed underSigning & Capabilitiesbutton. - Add
Background Modescapability unless it is already on your capability list. Then selectRemote notifications. - Add
Push notificationscapability unless it is already on your capability list. - Make sure that your
Provisioning Profilehas required capabilities. If you didn't add them while creating Provisioning Profile for your app you should go to your Apple Developer Center to add them. Then refresh your profile in Xcode project.
This step is not required but it allows application to display notifications with images.
- Open your Xcode project
- Go to
File -> New -> Target. - Select
Notification Service Extension. - Choose a suitable name for it (for example
PPGNotificationServiceExtension). - Open
NotificationService.swiftfile. - Change
didReceivefunction to: (use dispatch_group here to make sure that extension returns only when delivery event is sent and notification content is updated)
override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
self.contentHandler = contentHandler
self.bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent)
guard let content = bestAttemptContent else { return }
// Wait for delivery event result & image fetch before returning from extension
let group = DispatchGroup()
group.enter()
group.enter()
PPG.notificationDelivered(notificationRequest: request) { _ in
group.leave()
}
DispatchQueue.global().async { [weak self] in
self?.bestAttemptContent = PPG.modifyNotification(content)
group.leave()
}
group.notify(queue: .main) {
contentHandler(self.bestAttemptContent ?? content)
}
}
let beacon = Beacon()
beacon.addSelector("Test_Selector", "value")
beacon.addTag("new_tag", "new_tag_label")
beacon.addTagToDelete("tag_to_delete")
beacon.send { result in ... }
PPG.unsubscribeUser { result in ... }
Event's purpose is to tell API about newly received notifications. You should send events every time when user:
-
Received notification in extension
PPG.notificationDelivered(notificationRequest: UNNotificationRequest, handler: @escaping (_ result: ActionResult) -
Click on notification
PPG.notificationClicked(response: UNNotificationResponse) -
Click button inside notification
PPG.notificationButtonClicked(response: response, button: 1)
Available values for button are 1 and 2