Google-play-services_lib.jar is missing after updating to the latest version (3.1)

I have been using Google play services in my application for some time without any problems. I am using Eclipse. I updated the game services (both ADT and SDK) to the latest version after I / O, and now I can not get my build application. I added the google-play-services_lib project to my application as a library project. However, when I go to the java build path for my project, I get a red X next to google-play-services_lib under android dependencies. It searches in / bin / dir for google-play-services_lib.jar, however it is never created. Anyone facing this problem?

+6
source share
2 answers

Convert comment to response

After updating the Android SDK and ADT, make sure that the Android Build tools are installed.

Go to your Android sdk manager to check if Andorid Build Tools is installed. If not installed, install the same.

+13
source

So simple, I don’t know how I missed it. Right-click on the project library and select the assembly project. I forgot that I automatically disabled the project> build.

+3
source

Source: https://habr.com/ru/post/945335/


All Articles