mirror of
https://github.com/nerzhul/nrz-androidlib.git
synced 2025-06-07 16:06:21 +00:00
Merge branch 'master' of https://github.com/nerzhul/nrz-androidlib
This commit is contained in:
commit
b126a568e0
@ -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
|
This is used in owncloud-SMS app
|
||||||
|
|
||||||
/**
|
|
||||||
* Copyright (c) 2013-2015, Loic Blot <loic.blot@unix-experience.fr>
|
* Copyright (c) 2013-2015, Loic Blot <loic.blot@unix-experience.fr>
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* 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
|
* The views and conclusions contained in the software and documentation are those
|
||||||
* of the authors and should not be interpreted as representing official policies,
|
* of the authors and should not be interpreted as representing official policies,
|
||||||
* either expressed or implied, of the FreeBSD Project.
|
* either expressed or implied, of the FreeBSD Project.
|
||||||
*/
|
|
||||||
|
29
build.xml
Normal file
29
build.xml
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user