IOS front camera app

I had forbidden applications in the past, so as not to indicate in the plist or something that the application will work fine on devices with 3g or devices with a compass or with text messages, etc. How to indicate that my application will ONLY work normally with devices that have a front camera (for example, Skype would have to be done) Thank you!

+1
source share
1 answer

If you want your application to be used only on devices with a front camera, you can specify this by adding front-facing-camera to the application the necessary functions .

However, if the application has sufficient functionality when working on devices without a front camera, then it is probably better not to indicate this feature. From the documentation :

You should include keys only for those functions that are absolutely necessary for your application. If your application can use the missing functions, avoiding the code paths that use these functions, do not include the corresponding key.

+3
source

Source: https://habr.com/ru/post/1438711/


All Articles