XCODE encountered an issue while attempting to open the input file located at '/Users/name/Desktop/test/appname/node_modules/react-native-compressor/ios/Video/Compressor-Bridging-Header.h'

Encountering an issue while running my project in XCode.
I recently added the react-native-compressor package by following the steps mentioned in the installation guide
When attempting to run the project in XCode, the error below occurs:

<unknown>:0: error: error opening input file '/Users/name/Desktop/test/appname/node_modules/react-native-compressor/ios/Video/Compressor-Bridging-Header.h' (No such file or directory)

The file does exist and its content matches that of the provided URL: https://github.com/Shobbak/react-native-compressor/blob/master/ios/Video/VideoCompressor.h

Answer №1

The specified path could be incorrect because after "/Users/" it displays "name" instead of the actual account name of the macbook profile that is currently logged in.

Make sure to verify your path in this manner.

https://i.sstatic.net/uQoPx.png

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Typescript iteration: Exploring an iterable through multiple traversals

What is a practical approach to handling multiple traversals over an Iterable in Typescript? Typically, an Iterable can only be traversed once before it exhausts all its elements. For instance, an IterableIterator behaves this way. To traverse a sequence ...

Preventing Directive Angular 2 from Triggering Stop Button Click Event

I created my application using angular 2 and PrimeNG. I am trying to implement directives for checking user authority when a button is clicked. The issue I am facing is that even though there is no authority, the click event continues to be triggered. How ...

Exploring the attrTween function in Angular with D3 insights

I'm currently trying to grasp the concept of utilizing the function attrTween in D3. My goal is to create a pie-chart using the example found at http://bl.ocks.org/mbostock/5100636. However, I've encountered some challenges when it comes to the ...

Display the date that is 3 days after the selected date from the Date Picker in the text field

This is the date picker code I am currently using: var d = new Date(); $(function () { $("#datepicker").datepicker({ minDate: d, dateFormat: 'mm-dd-yy' }); }); I want to enhance this functionality so that when a date is ...

Flipping and expanding cards with CSS3

I am attempting to create a layout with a collection of cards/divs within a container. When a card/div is clicked, it should flip horizontally and expand to occupy the entire space within the container (essentially resizing to 100% x 100% when clicked). I ...

show certain DIVs based on the URL

Is it possible to dynamically display different sections based on the URL? My event website has 3 subevents, and I'd like to show the date of each event in the navigation bar for their respective URLs. <div id="us" class="us-web-date">&nbs ...

Creating a custom data type with a specific value in GraphQL

I am new to graphQL and have some questions regarding it. After going through the documentation, I decided to build something of my own. Currently, my setup is quite simple. At the beginning of my application, I have the following code: const express = ...

Do you find this unattractive? What are some ways to improve this unsightly JavaScript statement?

This code seems messy, how can I better structure this switch statement? function renderDataTypeIcon(dataType: string) { let iconName; switch (dataType) { case "STRING": //TODO - ENUM iconName = "text"; break; ...

Adjust the width and mode of an Angular 6 sidebar in real-time

Currently, I am in the process of developing an Angular 6 app that requires a responsive sidebar. To achieve this, I decided to utilize Angular Material's sidebar module. However, I encountered a challenge: I needed the sidebar to have a collapsed mod ...

Using jQuery to send emails

I have encountered an issue with my JavaScript code where it validates and sends an email through the Sendgrid API. Glimpse at the code below: var contact = new Vue({ el: '#form_contact', data: { company_name: null, fulln ...

Issues with showing data in Angular Material tables

I recently deployed my Angular Application on a server and encountered an issue with the Angular Material table. Despite data being present in the logs, it does not display on the table. This problem only occurs in production, as everything works perfectl ...

JavaScript functions are experiencing issues when used within the document.ready() function

I am facing an issue where adding a second function in JavaScript causes it to stop working on my page. Could someone help me identify the possible error? Your assistance would be greatly appreciated. It's worth noting that when I comment out the sec ...

Issue with binding background images to DIV elements in Angular 4 CSS

Here is a template example: <div [style.background-image]="profileImage" ></div> In the TypeScript file: We declare private profileImage: any; and use DomSanitizer for security. Fetching photo from service: We set this.profileImage using b ...

How to send responses with parameters in Node.js for .js files

I am having some difficulty with my node.js http application. While I am able to properly handle GET requests, I am struggling to respond correctly to requests for files like foo.js?_param=1234. How should I handle files of this type which have parameters ...

Is there a specific write rate limit per connection on firestore?

My objective is to efficiently write 1000 documents to different paths using the Admin SDK in Cloud Functions. I am uncertain whether it would be more effective to use a for loop with database.set() executed 1000 times compared to using batch write twice ...

How can I dynamically load a 3D model (in JSON format) at the current location of the mouse using Three.JS?

I'm currently working on a feature that involves loading a 3D model based on the mouse's position. Utilizing jQuery drag and drop functionality for this purpose has helped me load the model onto the canvas successfully, but I'm facing issues ...

Determine if localStorage is set using jQuery

There is a text on the page inside a div with the id clicker. When this div is clicked, the localStorage value should toggle between 1 and 0. I have provided an example in this JSFiddle link. Although it seems to be working by toggling the value, there ar ...

An email value being recognized as NULL

create-employee.html <div class="form-group"> <label for="exampleInputEmail1">Email address</label> <span><input type="text" [required]="!standingQueue" class="form-control" name="exampleInputEmail1" ...

What is the best method for obtaining XML within typescript react in the bpmn-js/lib/Modeler?

After importing my BPMN XML in Model using importXML and setting bpmnModeler to bpmnModelerClone, I now need to retrieve the BPMN from bpmnModelerClone. How can I achieve this? Below is the code snippet showing how I imported XML and set bpmnModeler to bp ...

Updating meta tags dynamically in Angular Universal with content changes

Hello, I'm encountering an issue with a dynamic blog page. I am trying to update meta tags using data fetched from the page. Here's the code snippet: getBlogPost() { this.http.get(...) .subscribe(result => { this.blogPost = re ...