This repository was archived by the owner on Nov 20, 2018. It is now read-only.
forked from lonslonz/mixpanel-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
139 lines (118 loc) · 5.36 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?xml version="1.0" encoding="UTF-8"?>
<project name="RakeAPI">
<property name="version" value="0.3.3"/>
<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into
Version Control Systems. -->
<property file="local.properties"/>
<!-- if sdk.dir was not set from one of the property file, then
get it from the ANDROID_HOME env var.
This must be done before we load project.properties since
the proguard config can use sdk.dir -->
<property environment="env"/>
<condition property="sdk.dir" value="${env.ANDROID_HOME}">
<isset property="env.ANDROID_HOME"/>
</condition>
<!-- The project.properties file is created and updated by the 'android'
tool, as well as ADT.
This contains project specific properties such as project target, and library
dependencies. Lower level build properties are stored in ant.properties
(or in .classpath for Eclipse projects).
This file is an integral part of the build system for your
application and should be checked into Version Control Systems. -->
<loadproperties srcFile="project.properties"/>
<!-- quick check on sdk.dir -->
<fail
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable."
unless="sdk.dir"
/>
<!-- These properties are copied pretty directly from
$ANDROID_HOME/tools/ant/build.xml -->
<property name="source.dir" value="src"/>
<property name="lib.dir" value="libs"/>
<property name="source.absolute.dir" location="${source.dir}"/>
<property name="docs.dir" value="docs"/>
<property name="docs.absolute.dir" location="${docs.dir}"/>
<property name="out.dir" value="bin"/>
<property name="out.absolute.dir" location="${out.dir}"/>
<property name="out.classes.absolute.dir" location="${out.dir}/classes"/>
<property name="test.dir" value="test"/>
<property name="test.libs.dir" value="${test.dir}/libs"/>
<property name="test.absolute.libs.dir" location="${test.libs.dir}"/>
<property name="release.dir" value="release/jar"/>
<!-- compilation options -->
<property name="java.encoding" value="UTF-8"/>
<property name="java.target" value="1.6"/>
<property name="java.source" value="1.6"/>
<property name="java.compilerargs" value=""/>
<!-- whether we need to fork javac.
This is only needed on Windows when running Java < 7 -->
<condition else="false" property="need.javac.fork">
<and>
<matches pattern="1\.[56]" string="${java.specification.version}"/>
<not>
<os family="unix"/>
</not>
</and>
</condition>
<echo message="target : ${target}"/>
<path id="project.javac.classpath">
<pathelement path="${sdk.dir}/tools/support/annotations.jar"/>
<pathelement path="${sdk.dir}/platforms/${target}/android.jar"/>
<pathelement path="libs/JSnappy-0.9.1.jar"/>
</path>
<target name="clean">
<delete dir="${out.absolute.dir}"/>
<delete dir="${docs.absolute.dir}"/>
<delete dir="${targetFile}"/>
<delete dir="${release.dir}"/>
</target>
<target name="-setup">
<mkdir dir="${out.absolute.dir}"/>
<mkdir dir="${out.classes.absolute.dir}"/>
</target>
<target name="compile" depends="-setup">
<!-- TODO unset debug="true" -->
<javac encoding="${java.encoding}"
source="${java.source}" target="${java.target}"
debug="true"
extdirs=""
includeantruntime="false"
destdir="${out.classes.absolute.dir}"
classpathref="project.javac.classpath"
verbose="false"
fork="${need.javac.fork}">
<src path="${source.absolute.dir}"/>
<compilerarg line="${java.compilerargs}"/>
</javac>
</target>
<script language="javascript">
var target = project.getProperty("target");
project.setProperty("target", target.replaceAll("android-", ""));
</script>
<echo>target=${target}</echo>
<target name="library" depends="compile">
<property name="targetFile"
value="RakeAPI${target}-${version}.jar"/>
<jar destfile="${targetFile}" basedir="${out.classes.absolute.dir}" includes="**/*.class">
<!--<zipgroupfileset dir="libs" includes="*.jar"/>-->
</jar>
<copy file="${targetFile}" tofile="${release.dir}/Rake.jar"/>
<move file="${targetFile}" tofile="${release.dir}/${targetFile}"/>
</target>
<target name="docs">
<javadoc packagenames="com.rake.android.rkmetrics"
sourcepath="src"
defaultexcludes="yes"
destdir="${docs.absolute.dir}"
author="true"
version="true"
classpathref="project.javac.classpath"
linkoffline="http://d.android.com/reference ${sdk.dir}/docs/reference"
use="true">
<fileset dir="." defaultexcludes="yes">
<include name="*/src/com/rake/android/rkmetrics/MixpanelAPI.java"/>
</fileset>
</javadoc>
</target>
</project>