Online
Registriert seit: 15. Mär 2007
4.093 Beiträge
Delphi 12 Athens
|
AW: Kamera und Mikrophon-Permission für MacOS
14. Okt 2024, 11:04
https://developer.apple.com/document...and_save_media
Man sollte auch die NS...... Erklärungen ausfüllen, welche beschreiben warum man eine Ressource in der App benötigt.
https://stackoverflow.com/questions/...key-with-a-str
So in der Art:
Delphi-Quellcode:
<key>NSMicrophoneUsageDescription</key>
< string>Need microphone access for uploading audio</ string>
<key>NSCameraUsageDescription</key>
< string>Need camera access for uploading images</ string>
<key>NSLocationUsageDescription</key>
< string>Need location access for updating nearby friends</ string>
<key>NSLocationWhenInUseUsageDescription</key>
< string>This app will use your location to show features near you.</ string>
<key>NSPhotoLibraryUsageDescription</key>
< string>Need photo library access for saving and uploading images</ string>
|