0

I am trying to run my android project on eclipse and platform ubuntu 64 bit. Everything goes well but When I Add Google play Services to the project appear a big problem.

1.Running android app, hight CPU load.

enter image description here

  1. Eclipse Show wrong message "GC overhead limit exceeded".

enter image description here

  1. Finally Close Eclipse.

enter image description here

When remove google play from my prject, it can running well.

enter image description here

Slinker
  • 379
  • 1
  • 4
  • 14

2 Answers2

1

I would suggest using android studio instead of eclipse https://developer.android.com/sdk/index.html.

But also, you could try launching eclipse with more memory: How can I give eclipse more memory than 512M?

Community
  • 1
  • 1
CenterOrbit
  • 6,446
  • 1
  • 28
  • 34
0

Did you add everything from google play services to your project? If so, I suggest you only depend on the APIs that your project actually uses.

See Selectively compiling APIs into your executable page

Sun
  • 41
  • 2