vivanta_connect_flutter 0.7.1 vivanta_connect_flutter: ^0.7.1 copied to clipboard
Vivanta Connect for Flutter
Vivanta Connect for Flutter #
Plugin to integrate Vivanta Connect in Flutter Projects
How to implement Vivanta Connect Flow #
- Add the import of Vivanta Connect
import 'package:vivanta_connect_flutter/views/start_vivanta_connect.dart';
- Create a route to open Vivanta Connect. For example:
Navigator.of(context).push(
MaterialPageRoute(
builder: (context) => VivantaConnectFlutter(
apiKey: apiKey, // Required
customerId: customerId, // Required
externalUserId: externalUserId, // Required
companyId: companyId, // Optional
),
),
);
- Vivanta Connect will start and automatically set the language based on the configuration of the device.
Note: Vivanta Connect requires a valid API Key and the associated Customer ID to fully function.
How to implement Embedded Graphs #
- Create a route to open an Embedded Graph
Navigator.of(context).push(
MaterialPageRoute(
builder: (context) => EmbeddedGraph(
apiKey: apiKey, // Required
customerId: customerId, // Required
externalUserId: externalUserId, // Required
graphType: graphType, // Required (Sleep, Active Time, Activity)
brandId: brandId, // Optional, only for users with more than 1 brand connected
),
),
);
Only for Apple Health integrations (iOS) #
- Add this code at the start of your user's session for obtaining and syncing Apple Health data.
import 'package:vivanta_connect_flutter/helpers/vivanta_sync.dart';
final vivantaSyncData = VivantaSync(
apiKey: apiKey, // Required
customerId: customerId, // Required
externalUserId: externalUserId, // Required
);
vivantaSyncData.executeAll(); // This process gets data from HealthKit and uploads to Vivanta
);
- Add the following elements in the Info.plist file.
<key>NSHealthShareUsageDescription</key>
<string>[Add here the purpose for reading from Apple Health]</string>
<key>NSHealthUpdateUsageDescription</key>
<string>[Add here the purpose for writing to Apple Health]</string>
Only for Google Health Connect integrations (Android) #
- Add the following code in your AndroidManifest.xml, inside the root node:
<queries>
<package android:name="com.google.android.apps.healthdata" />
<package android:name="com.google.android.apps.fitness" />
</queries>
- Add the following code in your main
<activity>
node:
<intent-filter>
<action android:name="androidx.health.ACTION_SHOW_PERMISSIONS_RATIONALE" />
</intent-filter>
- Add at least one of the permissions that your app will have access, in your AndroidManifest.xml inside the root node. The complete list of permissions is in [https://developer.android.com/health-and-fitness/guides/health-connect/plan/data-types#alpha10](this link). For example:
<uses-permission android:name="android.permission.health.READ_STEPS"/>
- In your
gradle.properties
file, replace this values:
org.gradle.jvmargs=-Xmx1536M
android.enableJetifier=true
android.useAndroidX=true
- Add this code at the start of your user's session for obtaining and syncing Google Health Connect data.
import 'package:vivanta_connect_flutter/helpers/vivanta_sync.dart';
final vivantaSyncData = VivantaSync(
apiKey: apiKey, // Required
customerId: customerId, // Required
externalUserId: externalUserId, // Required
);
vivantaSyncData.executeAll(); // This process gets data from HealthKit and uploads to Vivanta
);