Skip to content
Advertisement

Unable to start uiautomatorviewer on Ubuntu

I am trying to start uiautomatorviewer from default sdk installed location using terminal (Ubuntu 16) :

>abc@abc:~/Android/Sdk/tools/bin$ ./uiautomatorviewer

and I am getting an error as below :

Error

-Djava.ext.dirs=/home/mukesh/Android/Sdk/tools/lib/x86_64:
/home/abc/Android/Sdk/tools/lib is not supported.Use -classpath instead.

Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.

Till yesterday things are working fine for me . So , far I tried looking into the post unable to start uiautomatorviewer

but what I am getting is a different error , Forgive me but I am a newbie to this and absolutely no idea of what went wrong in one day , Any help to resolve the error would be highly appreciated .

Advertisement

Answer

Finally I was able to find out a solution , so just posting the same for other’s reference :

Downgrading the Java version from 9 to 8 resolved the issue :

Command Used :

sudo update-alternatives --config java

This is list out the version installed like this with * on the selected version :

     Selection    Path                                            Priority   Status
------------------------------------------------------------
  0            /usr/lib/jvm/java-9-openjdk-amd64/bin/java       1091      auto mode
* 1            /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java   1081      manual mode
  2            /usr/lib/jvm/java-9-openjdk-amd64/bin/java       1091      manual mode

Press <enter> to keep the current choice[*], or type selection number: 

Enter here the number 1 as we need version 8 .

Thats’s all done , rerun uiautomatorviewer .

EDIT:

If You see something like “you don’t have any alternatives” try donwloading openjdk-8 from the link below (for linux)

Install open jdk-8

Advertisement