Skip to content

Commit

Permalink
Added notification to android device build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrence Ryan committed Apr 24, 2012
1 parent b0cd052 commit c5b8c36
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.xml
Expand Up @@ -9,7 +9,7 @@


<target name="deployToPGB" depends="build,zip,uploadFilesToPGB" description="Sending Files to Phone Gap Build" /> <target name="deployToPGB" depends="build,zip,uploadFilesToPGB" description="Sending Files to Phone Gap Build" />


<target name="deployToAndroid" depends="deployToPGB, installOnToAndroidDevice" description="Sending Files to Phone Gap Build" /> <target name="deployToAndroid" depends="deployToPGB, installOnToAndroidDevice, notify" description="Sending Files to Phone Gap Build" />




<target name="test.ant" description="Exports the script of the database "> <target name="test.ant" description="Exports the script of the database ">
Expand Down Expand Up @@ -127,4 +127,12 @@


</target> </target>


<target name="notify" description="Plays an audio file">
<echo message="Playing Audio Alert"/>
<exec executable='afplay' failonerror='true'>
<arg value='beep.wav'/>
</exec>
</target>


</project> </project>

0 comments on commit c5b8c36

Please sign in to comment.