Data Points Collected
Finotes framework automatically collects multiple data points in-order to help developers get in-depth information on the issues reported.
Finotes watchOS framework collects and reports multiple data points along with each issue report. Starting from version 4.1.0, the framework allows developers to individually blacklist these data points. Using MaskedDeviceData key in info.plist file, developers can prevent framework from collecting and sending these data points to the dashboard.
Info.plist file:
<key>FnObserve</key>
<dict>
<key>MaskedDeviceData</key>
<array>
<string>model</string>
<string>brand</string>
</array>
</dict>
Please make sure that only one FnObserve key exists in your info.plist file.
Below are the some of the data points collected by the framework and corresponding keys that can be used in info.plist file to blacklist each of the data points
Model of the device
MaskedDeviceData key:model
Brand of the device
MaskedDeviceData key:brand
Internal name of the OS version running in the device
MaskedDeviceData key:osVersion
Current battery level of the device
MaskedDeviceData key:batteryLevel
Elapsed time of the device since last reboot MaskedDeviceData key:lastRebootTime
Current timezone offset of the device
MaskedDeviceData key:timezoneOffset
Deprecated API
Directly setting DataBlackList key in info.plist is now deprecated and will be removed in a future version.
<key>DataBlackList</key>
<array>
<string>model</string>
<string>brand</string>
</array>