device-mgt-plugins/components/mobile-plugins/android-plugin/io.entgra.device.mgt.plugins.mobile.android.ui/build.xml

42 lines
1.9 KiB
XML
Raw Normal View History

2017-03-22 09:59:37 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~
~ WSO2 Inc. licenses this file to you under the Apache License,
~ Version 2.0 (the "License"); you may not use this file except
~ in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
2023-05-03 07:59:49 +00:00
<project name="create-geo-fence-capps" default="zip" basedir="../io.entgra.device.mgt.plugins.mobile.android.ui">
2017-03-22 09:59:37 +00:00
<property name="project-name" value="${ant.project.name}"/>
2023-05-03 07:59:49 +00:00
<property name="target-dir" value="../io.entgra.device.mgt.plugins.mobile.android.ui/target/ant"/>
2017-03-22 09:59:37 +00:00
<property name="src-dir" value="src/main/resources/android-tryit"/>
<target name="clean">
2023-05-03 07:59:49 +00:00
<delete dir="../io.entgra.device.mgt.plugins.mobile.android.ui/target/ant"/>
2017-03-22 09:59:37 +00:00
</target>
<target name="zip" depends="clean">
2023-05-03 07:59:49 +00:00
<zip destfile="../io.entgra.device.mgt.plugins.mobile.android.ui/target/ant/android-tryit.ZIP" update="true" duplicate="preserve">
2017-06-22 08:05:30 +00:00
<zipfileset
2023-05-03 07:59:49 +00:00
dir="../io.entgra.device.mgt.plugins.mobile.android.ui/target/"
2017-06-22 08:05:30 +00:00
includes="JavaApp.jar" fullpath="JavaApp.jar"/>
2019-06-01 19:13:50 +00:00
<zipfileset
2023-05-03 07:59:49 +00:00
dir="../io.entgra.device.mgt.plugins.mobile.android.ui/target/"
2019-06-01 19:13:50 +00:00
includes="client-debug.apk" fullpath="resources/client-debug.apk"/>
2023-05-03 07:59:49 +00:00
<zipfileset dir="src/main/resources/android-tryit/" includes="startEmulator.sh" filemode="755"/>
<zipfileset dir="src/main/resources/android-tryit"/>
2017-03-22 09:59:37 +00:00
</zip>
</target>
</project>