mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-04 08:25:01 -05:00
1cc40c0a7c
There have been plenty of ppl involved in creating this version. I don't wanna mention names as I'm sure I'd forget someone so I just tell where help has been done: - The partial android versions done by various ppl - Testing on different android devices - reviewing code (especially the in core changes) - testing controls - reviewing texts A big thank you to everyone helping this to be completed!
17 lines
657 B
XML
17 lines
657 B
XML
<?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>
|