New Relic cannot boot normally (Android) using eclipse

I am trying to work on New Relic using this link .

I followed the same instructions as in this link, but every time I get the same error.

enter image description here

I've also tried this also https://docs.newrelic.com/docs/mobile-monitoring/mobile-monitoring-installation/android/troubleshooting-eclipse-configurations

I also used jdk1.8.0_05 . and eclipse juno with latest SDK 23.0.2. please help me to solve this.

+3


source to share


3 answers


I had the same problem. Eventually found this: https://discuss.newrelic.com/t/installing-eclipse/6793 Basically it doesn't work with Eclipse Luna. He also does not work with Indigo, who simply leaves Juno and Kepler.



+2


source


Just follow the link given by @rockgecko.

Points to remember: -



  • Add the absolute path before " javaw.exe " after the " -vm " suffix
  • In eclipse add the standard environment to JAVA / JRE, put the JDK path there and it should only be in the JDK folder and remember to activate it instead of the previous JRE option after adding it correctly.
+1


source


Add this line to juno eclipse properties in target section after eclipse.exe

-vm "C: \ Program Files \ Java \ jdk1.8.0_05 \ bin \ javaw.exe"

and set your PATH variable this way

C: \ Program Files \ Java \ jdk1.8.0_05 \ bin ;.

in environment variables in your system properties.

Hope it works for you.

+1


source







All Articles