Can't run Android Studio on Yosemite

2019-01-21 10:39发布

Can't install Java 7 (installer refuses).

Can install Java 8.

But then starting Android Studio, it says it needs to install the legacy JDK 6, which is not going to work for me because our projects are already 1.7.

10条回答
Melony?
2楼-- · 2019-01-21 10:56

Last year I uninstalled Java 6 from Mavericks and installed Java 7, then I install Android Studio and everything was working fine. I upgraded Android Studio sometime around August or October and I started having the problem everyone is having. Today, I uninstalled Java 7 and installed Java 8 and added the STUDIO_JDK for Java 8. I uninstalled Android Studio and installed the latest version of Android Studio. Now, everything is working like is supposed to.

查看更多
兄弟一词,经得起流年.
3楼-- · 2019-01-21 10:57

UPDATE 2014.12.10

This should be the final update on this question.

After the final release of Android Studio v1.0, there is an official way to select your JVM, mentioned here:

http://tools.android.com/tech-docs/configuration/osx-jdk

All the following information is kept only as reference, please don't use it.

UPDATE 2014.11.26

Editing the Info.plist file as suggested in this answer might break your IDE.
Please check out the prescribed solution mentioned by the IntelliJ folks, and this is the prefered fix to this problem.

If any of the misbehavior/undesired effects mentioned there happen with your setup by using this fix, you should restore the plist file, and use the legacy JDK 6 instead.

If JDK 6 is not an option for your setup, or still have some difficulty to start up the IDE, you can try this fix at your own risk.

Please also read the comments under this answer to review feedbacks from other community members(yes, good and bad) and my discussions with them.

OLDER UPDATE

This is an outdated answer, when Yosemite is in early Beta stage and could mess your current setup(see the comments, mostly caused by incompatible JVMs when you do need to update/upgrade them).

As mentioned in the original answer, this is a "dirty" fix that time, and the most suitable way to fix this problem now is to upgrade/update your JVMs as suggested for your OSX system.

Original answer is put below just for reference, if all the JVM upgrade/update still doesn't work for you, at least you can manually install a JVM and use this hack, but please don't upvote this answer because there are better ones.

==================================

As mentioned as other users, the JDK from Apple and new OSX seems mess things up.

However, there is a dirty quick fix for it.

First, locate your Android Studio, for my machine, it is here:

jerry-retina-mbp:Android Studio.app jerry$ pwd
/Applications/Android Studio.app

Then find the application bundle description file for it, named "Info.plist":

jerry-retina-mbp:Android Studio.app jerry$ ls Contents/Info.plist 
Contents/Info.plist

Use "Finder" to open this folder:

jerry-retina-mbp:Android Studio.app jerry$ open Contents

Then, you can use whatever text editor you like, to modify the JVM settings in "Info.plist"(which is just a XML file).

Before:

  <key>JVMVersion</key>
  <string>1.6*</string>

After:

  <key>JVMVersion</key>
  <string>1.6+</string>

Hopefully after this change, your Android Studio will not complain the JVM again.

查看更多
等我变得足够好
4楼-- · 2019-01-21 11:01

I had the same issue and I fixed by installing javaforosx. http://support.apple.com/kb/DL1572?viewlocale=en_US&locale=en_US. ;)

查看更多
疯言疯语
5楼-- · 2019-01-21 11:09

I followed the top voted answer, under the final retail version of Yosemite, with android studio 0.8.9 and it caused loads of issues - My multi-monitor setup wouldn't work, and android studio would randomly crash or lock up.

Instead what worked for me was to install the java update at: http://support.apple.com/kb/DL1572

InteliJ do not recommend editing the plist file, to run the IDE under a higher version of java. It will break the updating system. In addition there are many bugs which will appear when running under higher versions of java: https://intellij-support.jetbrains.com/entries/27854363-IDE-doesn-t-start-after-updating-to-Mac-OS-Yosemite-or-Mavericks

查看更多
登录 后发表回答