Mats
Mats

Reputation: 63

Failed to install 'cordova-plugin-accountkit' in ionic cordova platform ios

I am trying to add account-Kit plugin into iOS build but it is showing an error. Referring from : https://github.com/gurisko/cordova-plugin-accountkit attached screenshot of terminal.

enter image description here

Upvotes: 0

Views: 388

Answers (1)

Delwyn Pinto
Delwyn Pinto

Reputation: 612

Since its an ios build, its most like an cocoapods issue.

Remove platform ios ionic cordova platform rm ios

Install cocoapods from here.

Once done run pod setup

Add platform ios ionic cordova platform add ios

Install the plugin

Run pod install (within platforms/ios)

Upvotes: 0

Related Questions