Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AppEnginePlugin : Unsupported major.minor version 51.0 - appengine 1.9.17

After I updated to Android Studio 1.0 RC I get this error:

AppEnginePlugin : Unsupported major.minor version 51.0

Since appengine is compiled with java 1.7 why does it say it's not supported?

Here is my java version:

java version "1.7.0_67"
Java(TM) SE Runtime Environment (build 1.7.0_67-b01)
Java HotSpot(TM) 64-Bit Server VM (build 24.65-b04, mixed mode)
like image 657
Jacek Kwiecień Avatar asked Dec 01 '22 01:12

Jacek Kwiecień


2 Answers

(copied from my solution here)

Solution:

Solution for me was to edit Android Studio.app/Contents/Info.plist

Find these two lines towards the bottom:

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

Change it to 1.7*, so that it looks like so:

<key>JVMVersion</key>
<string>1.7*</string>

Then restart your IDE.


Explanation:

If you're like me, you were prompted to install Java 6 for your Mac when installing Android Studio (before the RC release) because it required that and I didn't have a runtime installed at the time (clean install). This made this the default runtime for the IDE (even if projects within it are built with JDK 7). It seems with 1.0 RC-1, they raised this to 1.7.

The plugin reference is misleading (same happened with me). You can check the runtime version it's using by going to Android Studio > About Android Studio.

NOTE: This may require you to revert it the next time you want to update with the patch updater, as someone here reported that the patcher fails if you've edited this file. I think this is really dumb and heavy handed by them, and hopefully they address that issue soon.

like image 132
Zac Sweers Avatar answered Dec 04 '22 14:12

Zac Sweers


  1. Android Studio -> File -> Project Structure
  2. SDK Location -> JDK Location
  3. Change the location here from 1.6 to 1.7
like image 39
Ankit Vij Avatar answered Dec 04 '22 13:12

Ankit Vij