Analytics Swift Localytics Plugin
Our Analytics-Swift Localytics Destination Plugin is open sourced on GitHub. Feel free to check it out here.
Once the Segment library is integrated with your site or app, toggle Localytics on in your Segment destinations, and add your application's App Key, which you can find in your Localytics app settings. These new settings will take up to an hour to propogate to all of your existing users. For new users it'll be instanteneous.
If you are using version 1.3.0 or higher of the Segment-Localytics Android SDK,
you can include a localytics.xml file in your Android project's res/values
folder to define your settings. Note that any settings entered in the Segment UI
will override the equivalent values defined in your localytics.xml file. You
can read more about the localytics.xml file in Localytics's documentation
here.
To add the Localytics plugin to your app:
- From the Segment Destinations page click Add Destination.
- Search for Localytics and select it in the results that appear.
- Choose which source to connect to your Localytics destination.
- Add your Localytics App Key to the destination's settings tab.
Warning
The Localytics library itself will be installed as an additional dependency.
In the Xcode File menu, click Add Packages. You'll see a dialog where you can search for Swift packages. In the search field, enter the URL for this repo:
https://github.com/segment-integrations/analytics-swift-localytics
You then have the option to pin to a version or specific branch and select which project in your workspace to add the package to. Once you've made your selections, click the Add Package button.
Open the file where you set up and configured the Analytics-Swift library. Add this plugin to the list of imports.
1.package(2name: "Segment",3url: "https://github.com/segment-integrations/analytics-swift-localytics.git",4from: "1.0.0"5),
Open the file where you setup and configure the Analytics-Swift library. Add this plugin to the list of imports.
1import Segment2import SegmentLocalytics // <-- Add this line
Just under your Analytics-Swift library setup, call analytics.add(plugin: ...) to add an instance of the plugin to the Analytics timeline.
1let analytics = Analytics(configuration: Configuration(writeKey: "<YOUR WRITE KEY>")2.flushAt(3)3.trackApplicationLifecycleEvents(true))4analytics.add(plugin: LocalyticsDestination())
Your events now have Localytics session data and start flowing to Localytics in device-mode.
When you make an Identify call, Segment sets the Localytics
customerId and any special Localytics traits you provide, like name,
email, or custom traits.
When you make a Track call, Segment logs an event with Localytics containing the name of the event and any optional event properties.