UNPKG

react-native-photos-framework

Version:

Use Apples Photos Framework with react-native to fetch media from CameraRoll and iCloud

9 lines (7 loc) 245 B
const fs = require('fs'); const makeBuildPatch = require('./patches/makeBuildPatch'); module.exports = function isInstalled(config, name) { return fs .readFileSync(config.buildGradlePath) .indexOf(makeBuildPatch(name).patch) > -1; };