Home > Blockchain >  Voxeet UXKit Cordova - Cant install cordova plugin missing "Carthage/Build/VoxeetUXKit.xcframew
Voxeet UXKit Cordova - Cant install cordova plugin missing "Carthage/Build/VoxeetUXKit.xcframew

Time:04-27

I use this plugin for a cordova app and I didn`t ahve any problem on Android platform, is working as expected but Ican't install it on IOS. After cordova-install I get:

Error: Command failed: /Users/interalia/Documents/Alexini Project/WorkoutMinister/WorkoutMinister/plugins/cordova-plugin-voxeet/carthage.sh update --use-xcframeworks --platform ios --no-use-binaries --project-directory /Users/interalia/Documents/Alexini Project/WorkoutMinister/WorkoutMinister/plugins/cordova-plugin-voxeet/src/ios
/bin/sh: /Users/interalia/Documents/Alexini: No such file or directory

And then

Cannot find framework "/Users/interalia/Documents/Alexini Project/WorkoutMinister/WorkoutMinister/plugins/cordova-plugin-voxeet/src/ios/Carthage/Build/VoxeetUXKit.xcframework" for plugin cordova-plugin-voxeet in iOS platform

Im using cordova 11.0.0 and xcode Version 12.5.1 (12E507)

Thanks for the help

CodePudding user response:

I solved it installing xcode 13 and then going to the cordova project root folder and running

sudo xcode-select -s /Applications/Xcode.app/Contents/Developer

after that I was able install it.

  • Related