diff options
author | ShadowNinja <shadowninja@minetest.net> | 2016-04-13 14:14:04 -0400 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2016-04-28 12:28:42 -0400 |
commit | e41673820ffe200df78b1ec185ccb9d9ca962ae1 (patch) | |
tree | 94c0fda8c113920eb07bc97d03c7c551f8b6146f /build/android/build.xml | |
parent | 7baddd173591cc9394d57cdb265f978495314f7a (diff) | |
download | minetest-e41673820ffe200df78b1ec185ccb9d9ca962ae1.tar.gz minetest-e41673820ffe200df78b1ec185ccb9d9ca962ae1.tar.bz2 minetest-e41673820ffe200df78b1ec185ccb9d9ca962ae1.zip |
Upgrade Android build to Gradle build system
The old Ant build system has been deprecated for a while and new development is focused on Gradle.
I also removed a hardcoded string that lint caught and moved the patch files to a subdirectory.
I left the JNI files in the root directory.
Diffstat (limited to 'build/android/build.xml')
-rw-r--r-- | build/android/build.xml | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/build/android/build.xml b/build/android/build.xml deleted file mode 100644 index 50a3e95ac..000000000 --- a/build/android/build.xml +++ /dev/null @@ -1,16 +0,0 @@ -<?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> |