waterlooalex
waterlooalex

Reputation: 13882

Configure an Android Studio (or IntelliJ IDEA) plugin manually

I'm trying to use a plugin in Android Studio, but, there is an Android Studio bug that prevents me from launching File->Other Settings->Configure Plugins.

Its a simple plugin, open source, its requesting a parameter named "name" that I'd like to configure manually somehow, perhaps in the file system?

Problem line: https://github.com/phrase/Phrase-AndroidStudio/blob/master/src/com/phraseapp/androidstudio/TokenRepository.java#L19

Upvotes: 0

Views: 89

Answers (1)

yole
yole

Reputation: 97138

File | Other Settings | Configure Plugins runs the wizard that can enable or disable certain plugins. It does not allow you to change the settings of a plugin.

To change the settings of a plugin, use the regular Settings dialog.

Upvotes: 1

Related Questions