0

I have an android application using google's basegameutils library. When I compile and run the application with only the basegameutils library it runs fine. When I add the espian showcaseview library the launch gets stuck at 100 percent. I have also created another sample application successfully imported the espian showcaseview library and it works absolutely fine. It does not get stuck during the launch and I do not get any errors.

I have tried waiting until process works its way out, but eclipse with become non responsive and even close sometimes.

I am adding the library by right clicking my project > properties > android > add library

My Java Build Path with espian showcaseview library added looks like

My Java Build Path with espian showcaseview library added

Codes
  • 195
  • 1
  • 5
  • 15
  • Does the IDE freezes when it reach 100% or it keeps loading? Are you connected to a real device? – bonnyz Jan 09 '15 at 09:20
  • It freezes the entire Eclipse IDE becomes unresponsive and will sometimes close itself. I am using my physical android galaxy s4 device not an emulator. – Codes Jan 09 '15 at 16:01

1 Answers1

2

I suggest you to increase Eclipse memory by changing some vmargs in your eclipse.ini file (more info here)

Here's a quick change for your eclipse.ini:

-vmargs
-Xms1024m
-Xmx2048m
bonnyz
  • 13,458
  • 5
  • 46
  • 70