Reset Android Studio settings to default setting on linux -
everyone. used develop android application on mac. installed android development environment on thinkpad running xubuntu.
i imported android studio settings on mac android studio on xubuntu via file-> import settings.
but after have done this, goes wrong. hotkey, java path ecc.
i tried delete android studio, , download again, settings still there.
on internet can find nothing this, know how reset android studio settings default setting? thanks!
it's simple. depending on androidstudio version, settings stored in ~/.androidstudio
, ~/.androidstudio1.1
or ~/.androidstudio1.2
.
open terminal , run following code:
ls -a | grep android
# see of 3 folders above have. rename each of settings folders have appropriate mv
command:
mv .androidstudio .androidstudio.bak mv .androidstudio1.1 .androidstudio1.1.bak mv .androidstudio1.2 .androidstudio1.2.bak
Comments
Post a Comment