mirror of https://github.com/opa334/TrollStore.git
32 lines
1.2 KiB
C
32 lines
1.2 KiB
C
|
//
|
||
|
// TSCommonTCCServiceNames.h
|
||
|
// IPAInfo
|
||
|
//
|
||
|
// Created by Luke Noble on 30.10.22.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
static NSDictionary* const commonTCCServices = @{
|
||
|
@"kTCCServicePhotos": @"Photo Library",
|
||
|
@"kTCCServicePhotosAdd": @"Photo Library (Add)",
|
||
|
@"kTCCServiceCamera": @"Camera",
|
||
|
@"kTCCServiceMicrophone": @"Microphone",
|
||
|
@"kTCCServiceAddressBook": @"Contacts",
|
||
|
@"kTCCServiceCalendar": @"Calendars",
|
||
|
@"kTCCServiceReminders": @"Reminders",
|
||
|
@"kTCCServiceWillow": @"HomeKit",
|
||
|
@"kTCCServiceGameCenterFriends": @"Game Center Friends",
|
||
|
@"kTCCServiceExposureNotification": @"Exposure Notifications",
|
||
|
@"kTCCServiceFocusStatus": @"Focus Status",
|
||
|
@"kTCCServiceUserTracking": @"User Tracking",
|
||
|
@"kTCCServiceFaceID": @"Face ID",
|
||
|
@"kTCCServiceMediaLibrary": @"Apple Media Library",
|
||
|
@"kTCCServiceMotion": @"Motion Sensors",
|
||
|
@"kTCCServiceNearbyInteraction": @"Nearby Device Interaction",
|
||
|
@"kTCCServiceBluetoothAlways": @"Bluetooth (Always)",
|
||
|
@"kTCCServiceBluetoothWhileInUse": @"Bluetooth (While In Use)",
|
||
|
@"kTCCServiceBluetoothPeripheral": @"Bluetooth (Peripherals)",
|
||
|
@"kTCCServiceLocation": @"Location"
|
||
|
};
|