我的mac OS中有Android studio 1.5.1版。根据{{3}}
,市场上的最新版本为2.0http://tools.android.com/download/studio/builds/2-0
当我尝试更新时,它会显示警告。
它显示我安装了最新版本。知道可能导致这个bug的原因吗?我需要下载全新设置吗?
我试过通过使缓存无效并重新启动工作室但没有运气。
答案 0 :(得分:0)
这是因为你忽略了更新,所以它不会问你是否要再更新它。
解决方案只是退出Android Studio,然后编辑其other.xml
文件,并将myIgnoredBuildNumbers
块替换为以下内容:
<option name="myIgnoredBuildNumbers">
<value>
<list size="0" />
</value>
</option>
other.xml
位于Android Studio配置目录下:
~/.AndroidStudioPreview/config/options/other.xml
%HOMEPATH%\.AndroidStudioPreview\config\options\other.xml
(基本上与Unix路径相同)~/Library/Preferences/AndroidStudioPreview/options/other.xml
有关详细信息,请参阅this question和its answer。