Release Version

How can I capture the release version of my application for the captured user sessions?

You can capture the release version of your application using the zipy.init() method with options.

Initialise Zipy with your Project SDK key and begin recording the user sessions. The release version will be captured as part of this.

zipy.init(sdk_key, [options])

Following are the Method Parameters:

Name

Description

sdk_key

Your project SDK key

options

A JSON object which specifies optional parameters to initialize your recording with. (Optional)

The option to be used with this method is described below:

  • releaseVer - String

This specifies a release version for your project making it easier for you to identify which release version of your project was used when your session was recorded or your error was captured.

Example Usage:

zipy.init("a4f13d18", {
   releaseVer: "0.1.0"
});

Last updated