Upgrade Android build to Gradle build system
authorShadowNinja <shadowninja@minetest.net>
Wed, 13 Apr 2016 18:14:04 +0000 (14:14 -0400)
committerShadowNinja <shadowninja@minetest.net>
Thu, 28 Apr 2016 16:28:42 +0000 (12:28 -0400)
commite41673820ffe200df78b1ec185ccb9d9ca962ae1
tree94c0fda8c113920eb07bc97d03c7c551f8b6146f
parent7baddd173591cc9394d57cdb265f978495314f7a
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.
45 files changed:
.gitignore
build/android/AndroidManifest.xml.template [deleted file]
build/android/Makefile
build/android/build.gradle [new file with mode: 0644]
build/android/build.xml [deleted file]
build/android/irrlicht-back_button.patch [deleted file]
build/android/irrlicht-texturehack.patch [deleted file]
build/android/irrlicht-touchcount.patch [deleted file]
build/android/jni/Android.mk
build/android/jni/Application.mk
build/android/libiconv_android.patch [deleted file]
build/android/libiconv_stdio.patch [deleted file]
build/android/libvorbis-libogg-fpu.patch [deleted file]
build/android/openssl_arch.patch [deleted file]
build/android/patches/irrlicht-back_button.patch [new file with mode: 0644]
build/android/patches/irrlicht-texturehack.patch [new file with mode: 0644]
build/android/patches/irrlicht-touchcount.patch [new file with mode: 0644]
build/android/patches/libiconv_android.patch [new file with mode: 0644]
build/android/patches/libiconv_stdio.patch [new file with mode: 0644]
build/android/patches/libvorbis-libogg-fpu.patch [new file with mode: 0644]
build/android/patches/openssl_arch.patch [new file with mode: 0644]
build/android/project.properties [deleted file]
build/android/res/drawable-hdpi/irr_icon.png [deleted file]
build/android/res/drawable-ldpi/irr_icon.png [deleted file]
build/android/res/drawable-mdpi/irr_icon.png [deleted file]
build/android/res/drawable-xhdpi/irr_icon.png [deleted file]
build/android/res/layout/assetcopy.xml [deleted file]
build/android/res/values/styles.xml [deleted file]
build/android/settings.gradle [new file with mode: 0644]
build/android/src/debug/AndroidManifest.xml [new file with mode: 0644]
build/android/src/main/AndroidManifest.xml [new file with mode: 0644]
build/android/src/main/java/net.minetest.minetest/MinetestAssetCopy.java [new file with mode: 0644]
build/android/src/main/java/net.minetest.minetest/MinetestTextEntry.java [new file with mode: 0644]
build/android/src/main/java/net.minetest.minetest/MtNativeActivity.java [new file with mode: 0644]
build/android/src/main/res/drawable-hdpi/irr_icon.png [new file with mode: 0644]
build/android/src/main/res/drawable-ldpi/irr_icon.png [new file with mode: 0644]
build/android/src/main/res/drawable-mdpi/irr_icon.png [new file with mode: 0644]
build/android/src/main/res/drawable-xhdpi/irr_icon.png [new file with mode: 0644]
build/android/src/main/res/layout/assetcopy.xml [new file with mode: 0644]
build/android/src/main/res/values/strings.xml [new file with mode: 0644]
build/android/src/main/res/values/styles.xml [new file with mode: 0644]
build/android/src/net/minetest/minetest/MinetestAssetCopy.java [deleted file]
build/android/src/net/minetest/minetest/MinetestTextEntry.java [deleted file]
build/android/src/net/minetest/minetest/MtNativeActivity.java [deleted file]
util/bump_version.sh