Customization
Customization
Android
Copy the
applozic-settings.json
file from here: https://github.com/Kommunicate-io/Kommunicate-Capacitor-Plugin/example/android/app/src/main/assets/applozic-settings.json and paste it underproject/android/app/src/main/assets/
directory.See the customization options here: https://docs.kommunicate.io/docs/android-customization
iOs
- Add the KommunicateWrapper.swift file in the project as mentioned under Push notifications iOS steps 3 and 4 (Ignore if already added)
- Add the call to KommunicateWrapper's didFinishLaunch method in AppDelegate's method as below (Ignore if already added)
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
UNUserNotificationCenter.current().delegate = self
KommunicateWrapper.shared.application(application, didFinishLaunchingWithOptions: launchOptions)
return true
}
Search for function
useCustomConfigurations()
inKommunicateWrapper.swift
file and add the settings inside it. See the customization options here: https://docs.kommunicate.io/docs/ios-customizationAdd
Localizable.strings
file in your project and add the below entry to it:ConversationListVCTitle = "Conversations";