Skip to content

Commit

Permalink
update build.xml to grab play service jar
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamFP committed Jul 10, 2014
1 parent 1f86f0e commit d26750a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build/build.xml
Expand Up @@ -38,9 +38,22 @@
<classpath>
<pathelement location="${android.sdk}/android.jar"/>
<pathelement location="${flex.sdk}/lib/android/FlashRuntimeExtensions.jar"/>
<pathelement location="${gplayservices.libs}/libs/google-play-services.jar"/>
</classpath>
</javac>

<mkdir dir="../android/temp/zip"/>
<unzip src="${gplayservices.libs}/libs/google-play-services.jar" dest="../android/temp/zip" />
<copydir src="../android/temp/zip/com" dest="../android/temp/classes/com"/>

<copy todir="../temp/android/res/">
<fileset dir="${gplayservices.libs}/bin/res"/>
</copy>

<copy todir="../temp/android/res/values/">
<fileset dir="${gplayservices.libs}/res/values"/>
</copy>

<mkdir dir="../temp/android/"/>
<jar basedir="../android/temp/classes" destfile="../temp/android/lib${name}.jar"/>
<delete dir="../android/temp"/>
Expand Down

0 comments on commit d26750a

Please sign in to comment.