react-native-photos-framework
Version:
Use Apples Photos Framework with react-native to fetch media from CameraRoll and iCloud
16 lines (12 loc) • 357 B
JavaScript
const path = require('path');
const getBuildProperty = require('./getBuildProperty');
module.exports = function getPlistPath(project, sourceDir) {
const plistFile = getBuildProperty(project, 'INFOPLIST_FILE');
if (!plistFile) {
return null;
}
return path.join(
sourceDir,
plistFile.replace(/"/g, '').replace('$(SRCROOT)', '')
);
};