Implementing iOS Push Notifications
If you've completed the steps described in the Setup guide and retrieved the SDK file on the Git repository for app push on iOS, you are now ready to implement our iOS library in your app. Our library supports iOS version 13 and up. Make sure you have the latest Xcode when using this library.
caution
If you are upgrading from an older version of our library, it's always a good idea to read our Migration guide.
Dependencies
The Notificare SDK is compatible with apps supporting iOS 13 and above, and can be installed with Swift Package Manager or CocoaPods.
- Swift Package Manager
- CocoaPods
- If you are using the Swift Package Manager, open the menu File > Swift Packages > Add Package Dependency.
- In the Choose Package Repository prompt, add the following URL:
https://github.com/Notificare/notificare-sdk-ios.git
- Press Next and complete the remaining steps.
For more information on SPM, check their official documentation.
- If you haven't done so, install a recent version of CocoaPods.
- If you don't have an existing Podfile, run the following command to create one:
pod init
- Add the dependencies to your Podfile:
# Required
pod 'Notificare/NotificareKit'
# Optional modules
pod 'Notificare/NotificareAssetsKit'
pod 'Notificare/NotificareGeoKit'
pod 'Notificare/NotificareInAppMessagingKit'
pod 'Notificare/NotificareInboxKit'
pod 'Notificare/NotificareLoyaltyKit'
pod 'Notificare/NotificarePushKit'
pod 'Notificare/NotificarePushUIKit'
pod 'Notificare/NotificareScannablesKit'
pod 'Notificare/NotificareUserInboxKit'
- Run the following command:
pod install
- From now on, use the
.xcworkspace
file to open your project in Xcode instead of the.xcodeproj
file.