1
0
mirror of https://github.com/nerzhul/nrz-androidlib.git synced 2025-06-07 07:56:28 +00:00
This commit is contained in:
Loic Blot 2015-05-03 19:54:37 +02:00
commit b126a568e0
2 changed files with 30 additions and 2 deletions

View File

@ -6,7 +6,6 @@ The goal of this library is to offer a little abstraction layer for Nrz (Loïc B
This is used in owncloud-SMS app
/**
* Copyright (c) 2013-2015, Loic Blot <loic.blot@unix-experience.fr>
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
@ -32,4 +31,4 @@ This is used in owncloud-SMS app
* The views and conclusions contained in the software and documentation are those
* of the authors and should not be interpreted as representing official policies,
* either expressed or implied, of the FreeBSD Project.
*/

29
build.xml Normal file
View File

@ -0,0 +1,29 @@
<project name="nrz-androidlib" default="dist" basedir=".">
<property name="dist.dir" location="dist" />
<property name="src" location="src"/>
<property name="build.dir" location="build"/>
<property file="androidsdk.properties" />
<path id="res.classpath">
<fileset dir="${androidsdk.path}" includes="**/*.jar" />
</path>
<target name="init">
<mkdir dir="${build.dir}" />
<mkdir dir="${dist.dir}" />
</target>
<target name="compile" depends="init">
<javac srcdir="${src}" destdir="${build.dir}" classpathref="res.classpath" includeantruntime="false" />
</target>
<target name="dist" depends="compile">
<jar destfile="${dist.dir}/nrz-androidlib.jar" basedir="${build.dir}">
</jar>
</target>
<target name="clean">
<delete dir="${build.dir}" />
<delete dir="${dist.dir}" />
</target>
</project>