UNPKG

@t-mrtgu/react-native-vision-camera-fix-ios-codescan-corner

Version:

A powerful, high-performance React Native Camera library.

14 lines (13 loc) 486 B
import { withPodfileProperties } from '@expo/config-plugins'; /** * Set the `disableFrameProcessors` inside of the XcodeProject. * This is used to disable frame processors if you don't need it on iOS. (will save CPU and Memory) */ export const withDisableFrameProcessorsIOS = c => { return withPodfileProperties(c, config => { // TODO: Implement Podfile writing config.ios = config.ios; return config; }); }; //# sourceMappingURL=withDisableFrameProcessorsIOS.js.map