2016-04-15 97 views
0

我在我的mac OS中有Android工作室版本1.5.1。最新在市场上的版本是2.0按http://tools.android.com/download/studio/builds/2-0Android工作室更新不显示

enter image description here

当我尝试更新,它让我看到下面的警告。

enter image description here

这表明,我已经安装了最新版本。任何想法可能会导致这个错误?我是否需要下载全新的设置?

我试图通过无效缓存和重新开始工作室,但没有运气。

+0

请参阅下面的答案。 – 2016-04-15 08:29:31

回答

0

这是因为你有忽略了更新,所以它不会问你是否要更新它。

的解决方案是简单地退出过Android Studio,然后编辑其other.xml文件,并用下面的更换myIgnoredBuildNumbers块:

<option name="myIgnoredBuildNumbers"> 
    <value> 
    <list size="0" /> 
    </value> 
</option> 

other.xml位于你的Android工作室config目录下:

  • 对于Unix:~/.AndroidStudioPreview/config/options/other.xml
  • 对于Windows:%HOMEPATH%\.AndroidStudioPreview\config\options\other.xml(基本上与Unix路径相同)
  • 对于OS X:~/Library/Preferences/AndroidStudioPreview/options/other.xml

有关更多信息,请参见this questionits answer

+0

当前版本是稳定版 – Beena

+0

@Beena访问此网站可能会对您有所帮助。 http://stackoverflow.com/questions/28133518/how-to-update-android-studio-automatically – 2016-04-15 09:07:46

+0

我曾尝试将其更改为开发,现在能够看到弹出。谢谢 – Beena