Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 887 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 887 Bytes

iOS_ProtectedResources

A small dataset in the form of a .json file with the app permissions used by iOS and macOS in Objective-C. The data is obtained from Apples documentation at: https://developer.apple.com/documentation/bundleresources/information_property_list/protected_resources

Example of the dataset:

{
    "permissions": {
        "1": {
            "plkey": "NSBluetoothAlwaysUsageDescription",
            "commonName": "Bluetooth access",
            "description": "A message that tells the user why the app needs access to Bluetooth.",
            "category": "Bluetooth"
        } ...
     "resources": {
        "1": {
            "plkey": "NSAppleScriptEnabled",
            "commonName": "AppleScript enabled",
            "description": "A Boolean value indicating whether AppleScript is enabled.",
            "category": "Scripting"
        }....