问题描述
大家。我用来开发Mac上的android应用。最近,我在我的ThinkPad它运行Xubuntu上安装Android开发环境。
everyone. I used to develop android application on Mac. Recently I installed android development environment on my Thinkpad which running Xubuntu.
我通过文件 - 导入Mac上Android的工作室设置在Android上工作室的Xubuntu>导入设置。
I imported the Android studio settings on Mac to the Android studio on Xubuntu via File-> import settings.
不过,我已经这样做了之后,一切都错了。热键,java的路径ECC。
But after I have done this, everything goes wrong. The hotkey, the java path ecc.
我试着删除Android工作室,并重新下载,但设置仍然存在。
I tried to delete android studio, and download it again, but the settings are still there.
在网上,我可以找到几乎一无所知,没有人知道如何重置的Android Studio设置为默认设置?谢谢!
On the internet I can find almost nothing about this, does anyone know how to reset Android Studio settings to default setting? Thanks!
推荐答案
这很简单。根据您的AndroidStudio的版本,设置存储在〜/ .AndroidStudio
,〜/ .AndroidStudio1.1
或〜/ .AndroidStudio1.2
。
It's very simple. Depending on your AndroidStudio version, the settings are stored in ~/.AndroidStudio
, ~/.AndroidStudio1.1
or ~/.AndroidStudio1.2
.
打开一个终端,运行以下code:
Open a terminal and run the following code:
LS -a | Android版的grep
#看看有哪些三个文件夹上面你。然后重命名每个文件夹的设置,你有合适的 MV
命令:
ls -a | grep Android
# See which of those three folders above you have. Then rename each of the settings folders you have with the appropriate mv
command:
mv .AndroidStudio .AndroidStudio.bak
mv .AndroidStudio1.1 .AndroidStudio1.1.bak
mv .AndroidStudio1.2 .AndroidStudio1.2.bak
这篇关于重置的Android Studio设置为默认的Linux设置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!