Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<?xml version="1.0"?>
<!-- ======================================================================
06.07.2005 21:18:45
project
description
Tom
====================================================================== -->
<project name="project" default="default">
<description>
description
</description>
<!-- =================================
target: default
================================= -->
<target name="default" description="--> description">
<condition property="isWindows">
<os family="windows" />
</condition>
<condition property="isUnix">
<os family="unix" />
</condition>
<antcall target="os-independent"/>
</target>
<!-- - - - - - - - - - - - - - - - - -
target: os-independent
- - - - - - - - - - - - - - - - - -->
<target name="os-independent" depends="linux,win32">
<echo>OS-Independent</echo>
</target>
<!-- - - - - - - - - - - - - - - - - -
target: linux
- - - - - - - - - - - - - - - - - -->
<target name="linux" if="isUnix">
<echo>Linux</echo>
</target>
<!-- - - - - - - - - - - - - - - - - -
target: Win32
- - - - - - - - - - - - - - - - - -->
<target name="win32" if="isWindows">
<echo>Windows</echo>
</target>
</project>