Yenthe
Yenthe

Reputation: 2353

Google play resources where not found

First of all. Please do not lock or report this thread. I've tried all similar stackoverflow questions and none have fixed my problem!

Since I've added the google play services lib to my project (and the external JAR file) I keep getting the same error over and over again.

I've downloaded the google play libs with my SDK manager, I've imported the project and then I referred to the play library in my app and added the external JAR file.

Pictures:

Can anybody tell me what I did wrong or how I can fix this problem? I'm just trying to make my app login with Google+ really..

Thank you ~Yenthe

Upvotes: 2

Views: 1198

Answers (1)

Raghunandan
Raghunandan

Reputation: 133560

Since I've added the google play services lib to my project (and the external JAR file) I keep getting the same error over and over again. 

Its a library project and you to reference the same in your android project.

I've imported the project and then I referred to the play library in my app and added the external JAR file.

Remvoe the external jar. Reference the library project as below.

http://developer.android.com/google/play-services/setup.html If you are using android-studio follow the steps in the above link under the title Using Android Studio:

If you are using eclipse as a in IDE.

Copy the google-play services_lib library project to your workspace (folder where your android map project is). The library project can be found under the following path.

<android-sdk-folder>/extras/google/google_play_services/libproject/google-play-services_lib library project .

Import the library project to your eclipse

Click File > Import, select Android > Existing Android Code into Workspace, and browse the workspace import the library project. You can check if it is library project. Right click on the library project. Goto properties. Click Android on the left panel. You will see Is Library checked.

Right click on your android project. Goto properties. Choose Android on the left panel. Click on Add and browse the library project. Select the same. Click ok and apply

enter image description here

Upvotes: 1

Related Questions