Set up Amplify Analytics
The Analytics category enables you to collect analytics data for your App. The Analytics category comes with built-in support for Amazon Pinpoint and Amazon Kinesis (Kinesis support is currently only available in the Amplify JavaScript library). The Analytics category uses Amazon Cognito Identity pools to identify users in your App. Cognito allows you to receive data from authenticated, and unauthenticated users in your App.
Goal
To setup and configure your application with Amplify Analytics and record an analytics event.
Prerequisites
- Install and configure Amplify CLI
- An iOS application targeting at least iOS 11.0 with Amplify libraries integrated
- For a full example of creating a iOS Xcode project, please follow project setup walkthrough
Set up Analytics backend
Run the following command in your project's root folder. The CLI will prompt configuration options for the Analytics category such as Amazon Pinpoint resource name and analytics event settings.
The Analytics category utilizes the Authentication category behind the scenes to authorize your app to send analytics events.
amplify add analytics
? Select an Analytics provider (Use arrow keys) `Amazon Pinpoint`? Provide your pinpoint resource name: `yourPinpointResourceName`? Apps need authorization to send analytics events. Do you want to allow guests and unauthenticated users to send analytics events? (we recommend you allow this when getting started) `Yes`
To deploy your backend, run:
amplify push
Upon completion, amplifyconfiguration.json
should be updated to reference provisioned backend analytics resources. Note that these files should already be a part of your project if you followed the Project setup walkthrough.
Install Amplify Libraries
-
To install Amplify Libraries in your application, open your project in Xcode and select File > Add Packages....
-
Enter the Amplify iOS GitHub repo URL (
https://github.com/aws-amplify/amplify-swift
) into the search bar and click Add Package.
- Lastly, choose AWSPinpointAnalyticsPlugin, AWSCognitoAuthPlugin, and Amplify. Then click Add Package.
To install the Amplify Analytics and Authentication to your application, add both "AmplifyPlugins/AWSPinpointAnalyticsPlugin" and "AmplifyPlugins/AWSCognitoAuthPlugin" to your Podfile
(Because IAM credential is required to access AWS Pinpoint Service, "AWSCognitoAuthPlugin"
also needs to be installed). Your Podfile
should look similar to:
target 'MyAmplifyApp' do use_frameworks! pod 'Amplify' pod 'AmplifyPlugins/AWSPinpointAnalyticsPlugin' pod 'AmplifyPlugins/AWSCognitoAuthPlugin'end
To install, download and resolve these pods, execute the command:
pod install --repo-update
Now you can open your project by opening the .xcworkspace
file using the following command:
xed .
Initialize Amplify Analytics
To initialize the Amplify Analytics and Authentication categories, you are required to use the Amplify.add()
method for each category you want. When you are done calling add()
on each category, you finish configuring Amplify by calling Amplify.configure()
.
Add the following imports to the top of your AppDelegate.swift
file:
import Amplifyimport AWSPinpointAnalyticsPlugin
import Amplifyimport AmplifyPlugins
Add the following code
Create a custom AppDelegate
, and add to your application:didFinishLaunchingWithOptions
method
class AppDelegate: NSObject, UIApplicationDelegate { func application( _ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? ) -> Bool {
do { try Amplify.add(plugin: AWSCognitoAuthPlugin()) try Amplify.add(plugin: AWSPinpointAnalyticsPlugin()) try Amplify.configure() print("Amplify configured with Auth and Analytics plugins") } catch { print("Failed to initialize Amplify with \(error)") }
return true }}
Then in the App
scene, use UIApplicationDelegateAdaptor
property wrapper to use your custom AppDelegate
@mainstruct MyAmplifyApp: App { @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
var body: some Scene { WindowGroup { ContentView() } }}
Add to your AppDelegate's application:didFinishLaunchingWithOptions
method
func application( _ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
do { try Amplify.add(plugin: AWSCognitoAuthPlugin()) try Amplify.add(plugin: AWSPinpointAnalyticsPlugin()) try Amplify.configure() print("Amplify configured with Auth and Analytics plugins") } catch { print("Failed to initialize Amplify with \(error)") }
return true}
Upon building and running this application you should see the following in your console window:
Amplify configured with Auth and Analytics plugin
To record an event, specify your event using BasicAnalyticsEvent
and call Amplify.Analytics.record()
func recordEvents() { let properties: AnalyticsProperties = [ "eventPropertyStringKey": "eventPropertyStringValue", "eventPropertyIntKey": 123, "eventPropertyDoubleKey": 12.34, "eventPropertyBoolKey": true ] let event = BasicAnalyticsEvent(name: "eventName", properties: properties) Amplify.Analytics.record(event: event)}
View Analytics console
If you have not saved the link from before, you can still reach it from the terminal. Run the following command for opening the console.
amplify console analytics
Next Steps:
Congratulations! Now that you have Analytics' backend provisioned and Analytics library installed. Check out the following links to see Amplify Analytics use cases: