Skip to content

Releases: KinesteX/KinesteX-SDK-ReactNative

KinesteX SDK v1.1.5

28 Oct 19:44
Compare
Choose a tag to compare

This release brings re-designed CHALLENGE experience and a new integration option: EXPERIENCE - Engaging AI experiences are designed to captivate your users while delivering an immersive fitness experience.

To start using upgrade the KinesteXSDK version:
npm i kinestex-sdk-react-native@1.1.5

There are no breaking changes. To start using new EXPERIENCE integration option, simply change the integration option in your return statement:

   <KinestexSDK 
                  ref={kinestexSDKRef}
                  // change based on your use-case
                  data={postData} 
                  integrationOption={IntegrationOption.EXPERIENCE}
                  // handle data from the kinestex sdk
                  handleMessage={handleMessage} 
                  // IF using EXPERIENCE Integration Option, you must specify the experience name that you want to present:
                  experience={"box"}
                />