Add a warning if developers are not using JDK 8
Bug: 25786468 Change-Id: Ifaa782314d839079c17a572301550a0c2924f8c5
This commit is contained in:
parent
4983fdc854
commit
1084631c6f
1 changed files with 3 additions and 0 deletions
|
@ -1427,6 +1427,9 @@ function set_java_home() {
|
|||
|
||||
if [ ! "$JAVA_HOME" ]; then
|
||||
if [ ! "$EXPERIMENTAL_USE_JAVA8" ]; then
|
||||
echo JDK 8 will soon become the default. Please install it now.
|
||||
echo Also: \"export EXPERIMENTAL_USE_JAVA8=true\"
|
||||
echo See http://go/android-jdk8-discuss
|
||||
case `uname -s` in
|
||||
Darwin)
|
||||
export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
|
||||
|
|
Loading…
Reference in a new issue