AdobeAnalyticsEngine implements the AnalyticsEngine protocol, and in its track(event:) method it maps the AnalyticsEvent enum to the appropriate Adobe methods.
Internally the Adobe SDK is just using singleton objects, but the goal of Y—Analytics is to use Dependency Injection of a generic wrapper. This allows your project code to be loosely coupled to your choice of analytics provider. It also facilitates unit testing and a healthy app architecture.
Just be aware that even if you declare multiple instances of AdobeAnalyticsEngine, that they all reference the same Adobe SDK singleton.
When unit testing various components of your project, you should inject an instance of MockAnalyticsEngine instead of the Adobe engine. This allows your unit tests to run without any Adobe dependency and allows you to verify which events are tracked and when.
Simple use case: app ID
You may initialize AdobeAnalyticsEngine by passing an Adobe app ID.
import YAnalyticsAdobe
final class AppCoordinator {
let engine: AnalyticsEngine = {
let config = AdobeAnalyticsConfiguration(appId: "S3cr3t!")
return AdobeAnalyticsEngine(configuration: config)
}()
func trackSomething(someData: [String: Any]?) {
engine.track(
event: .event(name: "Something", parameters: someData)
)
}
}
Additional configuration options
In addition to the required app id, AdobeAnalyticsConfiguration can be initialized with the following additional parameters:
extensions: extensions to register with Adobe.
mappings: information for mapping from AnalyticsEvent to Adobe events.
logLevel: logging level to use
import YAnalyticsAdobe
final class AppCoordinator {
let extensions: [NSObject.Type] = ...
let logLevel: LogLevel = ...
let mappings: [String: AdobeEventMapping] = ...
let engine: AnalyticsEngine = {
let config = AdobeAnalyticsConfiguration(
extensions: extensions,
appId: "S3cr3t",
logLevel: logLevel,
mappings: mappings
)
return AdobeAnalyticsEngine(configuration: config)
}()
}
Dependencies
Y—Analytics Adobe depends upon our Y—Analytics framework (which is also open source and Apache 2.0 licensed).
Installation
You can add Y—Analytics Adobe to an Xcode project by adding it as a package dependency.
If you’re submitting before and after screenshots, movies, or GIF’s, enter them in a two-column table so that they can be viewed side-by-side.
When merging a pull request:
Make sure the branch is rebased (not merged) off of the latest HEAD from the parent branch. This keeps our git history easy to read and understand.
Make sure the branch is deleted upon merge (should be automatic).
Releasing new versions
Tag the corresponding commit with the new version (e.g. 1.0.5)
Push the local tag to remote
Generating Documentation (via Jazzy)
You can generate your own local set of documentation directly from the source code using the following command from Terminal:
jazzy
This generates a set of documentation under /docs. The default configuration is set in the default config file .jazzy.yaml file.
To view additional documentation options type:
jazzy --help
A GitHub Action automatically runs each time a commit is pushed to main that runs Jazzy to generate the documentation for our GitHub page at: https://yml-org.github.io/yanalytics-adobe-ios/
An Adobe implementation of Y—Analytics’
AnalyticsEngine
protocol.This framework links the Adobe Experience Platform Analytics SDK to implement an Adobe version of Y—Analytics‘
AnalyticsEngine
protocol.Licensing
Y—Analytics Adobe is licensed under the Apache 2.0 license.
Adobe Experience Platform Analytics SDK is licensed under the Apache 2.0 license.
Documentation
Documentation is automatically generated from source code comments and rendered as a static website hosted via GitHub Pages at: https://yml-org.github.io/yanalytics-adobe-ios/
Usage
AdobeAnalyticsEngine
AdobeAnalyticsEngine
implements theAnalyticsEngine
protocol, and in itstrack(event:)
method it maps theAnalyticsEvent
enum to the appropriate Adobe methods.Internally the Adobe SDK is just using singleton objects, but the goal of Y—Analytics is to use Dependency Injection of a generic wrapper. This allows your project code to be loosely coupled to your choice of analytics provider. It also facilitates unit testing and a healthy app architecture.
Just be aware that even if you declare multiple instances of
AdobeAnalyticsEngine
, that they all reference the same Adobe SDK singleton.When unit testing various components of your project, you should inject an instance of
MockAnalyticsEngine
instead of the Adobe engine. This allows your unit tests to run without any Adobe dependency and allows you to verify which events are tracked and when.Simple use case: app ID
You may initialize
AdobeAnalyticsEngine
by passing an Adobe app ID.Additional configuration options
In addition to the required app id,
AdobeAnalyticsConfiguration
can be initialized with the following additional parameters:AnalyticsEvent
to Adobe events.Dependencies
Y—Analytics Adobe depends upon our Y—Analytics framework (which is also open source and Apache 2.0 licensed).
Installation
You can add Y—Analytics Adobe to an Xcode project by adding it as a package dependency.
Contributing to Y—Analytics Adobe
Requirements
SwiftLint (linter)
Jazzy (documentation)
Setup
Clone the repo and open
Package.swift
in Xcode.Versioning strategy
We utilize semantic versioning.
e.g.
Branching strategy
We utilize a simplified branching strategy for our frameworks.
main
main
main
as they are completed and approved.main
gets tagged with an updated version # for each releaseBranch naming conventions:
e.g.
Pull Requests
Prior to submitting a pull request you should:
swiftlint
from the command line and confirm that there are no violations.jazzy
from the command line and confirm that you have 100% documentation coverage.git rebase -i HEAD~{commit-count}
to squash your last {commit-count} commits together into functional chunks.main
) has been updated since you created your branch, usegit rebase main
to rebase your branch.When submitting a pull request:
When merging a pull request:
Releasing new versions
1.0.5
)Generating Documentation (via Jazzy)
You can generate your own local set of documentation directly from the source code using the following command from Terminal:
This generates a set of documentation under
/docs
. The default configuration is set in the default config file.jazzy.yaml
file.To view additional documentation options type:
A GitHub Action automatically runs each time a commit is pushed to
main
that runs Jazzy to generate the documentation for our GitHub page at: https://yml-org.github.io/yanalytics-adobe-ios/