Description of the problem:
When trying to build a newly generated ionic capacitor project I am faced with the error [error] Error running update: [!] Unknown installation options: disable_input_output_paths.. This issue can be fixed by finding the Podfile in the ios/App directory and removing , :disable_input_output_paths => true from the file (line 7).
Affected platform
OS of the development machine
Other information:
Capacitor version: 1.0.0-beta.22
node version: 8.9.4
npm version: 6.5.0
CocoaPods version: 1.5.3
Steps to reproduce:
- Create new ionic capacitor app
- Add the iOS platform (
npx cap add ios)
- Sync the project (
npx cap sync)
Both of these last steps should show the error I highlight here.
Now to reproduce the fix:
- Find the Podfile in the
ios/App directory. Remove the following line: , :disable_input_output_paths => true.
- Sync the project again (
npx cap sync)
You should now see the sync complete successfully.
Description of the problem:
When trying to build a newly generated ionic capacitor project I am faced with the error
[error] Error running update: [!] Unknown installation options: disable_input_output_paths.. This issue can be fixed by finding the Podfile in theios/Appdirectory and removing, :disable_input_output_paths => truefrom the file (line 7).Affected platform
OS of the development machine
Other information:
Capacitor version: 1.0.0-beta.22
node version: 8.9.4
npm version: 6.5.0
CocoaPods version: 1.5.3
Steps to reproduce:
npx cap add ios)npx cap sync)Both of these last steps should show the error I highlight here.
Now to reproduce the fix:
ios/Appdirectory. Remove the following line:, :disable_input_output_paths => true.npx cap sync)You should now see the sync complete successfully.