Lovelock
Lovelock

Reputation: 8075

Error: .idea not supported - Removing Ionic / Cordova plugins

I am trying to update my packages within my Ionic Project.

When running for example:

ionic plugin rm phonegap-plugin-barcodescanner

I get the error:

Error: .idea not supported

A Google search reveals nothing.

Upvotes: 2

Views: 1593

Answers (2)

Vincent
Vincent

Reputation: 81

I made this command and it worked fine for me :

ionic cordova platform rm .idea

Upvotes: 3

C-Otto
C-Otto

Reputation: 5843

.idea is a (hidden) directory created by IntelliJ IDEA (and possibly variants like WebStorm and other Jetbrains products). You could try to remove the .idea directory from the plugins directory (after making an backup).

Upvotes: 3

Related Questions