From 5f5efe31579110c3d91e9c4dad84e2deec70ec36 Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Sun, 11 Apr 2021 21:02:03 +0200 Subject: Change build system to make The ant scripts included in the android SDK were removed recently. The alternative is Gradle. Gradle doesn't work well in this app because it's not possible to use Nix to pull dependencies. Gradle will try to patch the SDK. Also, it's very slow. It turns out the required build script is quite simple. --- ant.properties | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 ant.properties (limited to 'ant.properties') diff --git a/ant.properties b/ant.properties deleted file mode 100644 index 190cdd5..0000000 --- a/ant.properties +++ /dev/null @@ -1,23 +0,0 @@ -# This file is used to override default values used by the Ant build system. -# -# This file must be checked into Version Control Systems, as it is -# integral to the build system of your project. - -# This file is only used by the Ant script. - -# You can use this to override default values such as -# 'source.dir' for the location of your java source folder and -# 'out.dir' for the location of your output folder. -source.dir=srcs - -# You can also use it define how the release builds are signed by declaring -# the following properties: -# 'key.store' for the location of your keystore and -# 'key.alias' for the name of the key to use. -# The password will be asked during the build when you use the 'release' target. - -key.store=release-keys.keystore -key.alias=releasekey - -java.source=1.7 -java.target=1.7 -- cgit v1.2.3