Data Points Collected
Finotes framework automatically collects multiple data points in-order to help developers get in-depth information on the issues reported.
Finotes iOS framework collects and reports multiple data points along with each issue report. 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
<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  
Information on the SIM of the device
MaskedDeviceData key:simData
Details like number of sim slots, whether voice call is supported, if the sim is capable of sending SMS are collected.  
Information collected from the iOS CTTelephonyNetworkInfo API
MaskedDeviceData key:carrierData  
Type of network available in the device
MaskedDeviceData key:networkData  
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>