Skip to main content

Android/iOS Permission Grants

There are the permissions we require device users to grant our SDK to use the functionalities.

Android Permissions

Add the following permission settings to android/app/src/main/AndroidManifest.xml

    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

iOS Permissions

Add the following permission settings to ios/Runner/Info.plist

<key>NSCameraUsageDescription</key>
<string>Camera is used to capture user movement during fitness workouts</string>
<key>NSMicrophoneUsageDescription</key>
<string>Camera is used to capture user movement during fitness workouts</string>