ios CAMERA_USAGE_DESCRIPTION

cordova plugin rm cordova-plugin-camera

cordova plugin add cordova-plugin-camera –variable CAMERA_USAGE_DESCRIPTION=”this app will use your camera” –variable PHOTOLIBRARY_USAGE_DESCRIPTION=”this app will access to your photo library”

Mac mini – legolcsóbb, fejlesztésre, build-re

A Mac mini 19,7 cm-es keretben kínálja a teljes Mac-élményt. Valóságos kis erőmű, kedvező áron. Meglévő kijelződhöz, billentyűzetedhez és egeredhez csatlakoztatva azonnal nagy dolgokra leszel vele képes. https://www.apple.com/hu/mac-mini/

MacOS Sierra – Technikai adatok : https://support.apple.com/kb/sp742?locale=hu_HU

Mac mini (2010 közepi vagy újabb)

extreme digital:
https://edigital.hu/mac-mini/apple-mac-mini-14ghz-mgem2mp-p335702

aqua
https://www.aqua.hu/apple-mac-mini-core-i5-14ghz4gb500gb-asztali-szamitogep-mgem2mpa-306379.html

How to Install macOS Sierra in VirtualBox on Windows 10

In order to get this working, you will need access to a real Mac in order to download Sierra. You could, we suppose, obtain a Sierra ISO by other means, but we don’t recommend it. Borrow a friend’s Mac for an hour if you don’t have one, and you should be fine—everything beyond step one of this tutorial can be done on your Windows PC.

https://www.howtogeek.com/289594/how-to-install-macos-sierra-in-virtualbox-on-windows-10

Run macOS on your PC as a virtual machine : https://scottiestech.info/2016/09/25/run-macos-on-your-pc-as-a-virtual-machine/

Ionic IOS – Missing Info.plist key

To process your delivery, the following issues must be corrected:

Missing Info.plist key – This app attempts to access privacy-sensitive data without a usage description. The app’s Info.plist must contain an NSPhotoLibraryUsageDescription key with a string value explaining to the user how the app uses this data.

https://stackoverflow.com/questions/41611987/how-to-resolve-missing-info-plist-key-nsphotolibraryusagedescription

https://stackoverflow.com/questions/39566952/cordova-info-plist-nscamerausagedescription-key-is-missing

cordova plugin rm cordova-plugin-camera

cordova plugin add cordova-plugin-camera --variable CAMERA_USAGE_DESCRIPTION="this app will use your camera" --variable PHOTOLIBRARY_USAGE_DESCRIPTION="this app will access to your photo library"

******

iOS Quirks

Since iOS 10 it’s mandatory to add a NSCameraUsageDescription and NSPhotoLibraryUsageDescription in the info.plist.

NSCameraUsageDescription describes the reason that the app accesses the user’s camera.
NSPhotoLibraryUsageDescription describes the reason the app accesses the user’s photo library.

When the system prompts the user to allow access, this string is displayed as part of the dialog box.

To add this entry you can pass the following variables on plugin install.

CAMERA_USAGE_DESCRIPTION for NSCameraUsageDescription
PHOTOLIBRARY_USAGE_DESCRIPTION for NSPhotoLibraryUsageDescription

Example:

cordova plugin add cordova-plugin-camera –variable CAMERA_USAGE_DESCRIPTION=”your usage message” –variable PHOTOLIBRARY_USAGE_DESCRIPTION=”your usage message”

If you don’t pass the variable, the plugin will add an empty string as value.
https://github.com/apache/cordova-plugin-camera#ios-quirks