Reputation: 10544
I'm trying to install plugin in android studio when I Click Browse Respository it Shows this dialog
Anyone knows how to fix this?
Upvotes: 0
Views: 521
Reputation: 10544
I found the alternative solution, just delete the .AndroidStudio foler, and restart androi studio.
using
rm -R .AndroidStudio
After that the android studio back to default settings and install the plugin from the beginning
Upvotes: 1
Reputation: 800
Check permissions on /root/.AndroidStudio to confirm you can create the directory for plugins.
Simple way to modify permissions for User(u), Group(g) and Other(o) from command line:
chmod -R ugo+rw /root/.AndroidStudio/
Upvotes: 1