UNPKG

react-native-photos-framework

Version:

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

12 lines (9 loc) 249 B
module.exports = function removeSharedLibraries(project, libraries) { if (!libraries.length) { return; } const target = project.getFirstTarget().uuid; for (var name of libraries) { project.removeFramework(name, { target }); } };