summaryrefslogtreecommitdiff
path: root/build/android/build.xml
blob: 50a3e95acef3943f8f778501ed85626b39838240 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="UTF-8"?>
<project name="Minetest" default="help">
	<property file="local.properties" />
	<property file="ant.properties" />
	<property environment="env" />
	<condition property="sdk.dir" value="${env.ANDROID_HOME}">
		<isset property="env.ANDROID_HOME" />
	</condition>
	<loadproperties srcFile="project.properties" />
	<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"
	/>
	<import file="custom_rules.xml" optional="true" />
	<import file="${sdk.dir}/tools/ant/build.xml" />
</project>