I am working on an app that uses the google maps api. To do this I have to include the google play services project. I was able to get it to work in eclipse, but I now have to get the project to build using apache ant. I have modified the project.properties file to include the following reference:
android.library.reference.1=../../../../../Android/adt-bundle-windows-x86_64-20140702/sdk/extras/google/google_play_services/libproject/google-play-services_lib
which at least gets it to try to access the project, but when I try to build the project I get the following error:
Invalid file: C:\Android\adt-bundle-windows-x86_64-20140702\sdk\extras\google\google_play_services\libproject\google-play-services_lib\build.xml
I looked at the location it was accessing and there is no build file inside the google-play-services_lib folder. I am new to using apache ant to build android projects and I am not sure what the proper way to get it to work with the google play library is since it has to reference the project not just a jar file.
What else is necessary to get the project to build properly with ant?
Thanks
Edit:
I modified the set up so that I now reference a copy of the project in the location of my project, however the issue remains the same that ant is looking for a build file for the google play services project that does not exist.