Shaheer
Shaheer

Reputation: 45

Google play services in eclipse has stopped working

The following error occurs when I click on the imported google-play-services_lib in the package explorer:

The project description file (.project) for 'google-play-services_lib' is missing.  
This file contains important information about the project.  
The project will not function properly until this file is restored.

I have deleted Google Play Services from the SDK and re-installed it, but the same error occurs.

Edit: The problem has been solved. The google-play-services_lib folder was missing a file called .project

Upvotes: 2

Views: 2170

Answers (3)

Purvik Rana
Purvik Rana

Reputation: 341

What i have done. I have just copied the content of the extras\google\google_play_services\libproject\google-play-services_lib to google_play_services\ folder.

Now clean and build lay_service_lib and reference again that library to your project. Clean and Build your project again and DONE..

My WorkSpace is working now with this help.

Upvotes: 0

Waqleh
Waqleh

Reputation: 10161

  1. select the project google-play-services_lib and delete it from eclipse, but don't select delete from hard disk
  2. Select File > Import > Android > Existing Android Code Into Workspace and click Next.
  3. Select Browse.... Enter /extras/google/google_play_services/libproject.

if it still not working clean project and restart eclipse

source of my answer is redo step two in here

Upvotes: 5

JNF
JNF

Reputation: 3730

Worked for me when I imported without "Copy files to workspace"

Upvotes: 1

Related Questions