From c02194d894aabb90f45d7db7c47f29f8df28f583 Mon Sep 17 00:00:00 2001 From: Kees Jongenburger Date: Tue, 16 Dec 2014 11:15:59 +0100 Subject: [PATCH] Update README after F-Droid file move. The README documentation was not updated after the move of the f-droid client code to the F-Droid directory. The instruction where therefore wrong The troubleshooting documentation about determining the used Android versions in the project was also outdated. While the script was made functional the tip to install the various sdk from the command line did does not work for me. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e07dd53cf..917a3155a 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ Once you have checked out the version you wish to build, run: ``` git submodule update --init +cd F-Droid ./ant-prepare.sh # This runs 'android update' on the libs and the main project ant clean release ``` @@ -97,7 +98,7 @@ $ android list targets To get a list of targets used by fdroidclient libs, run: ``` -$ for i in $(grep "android update lib-project" ant-prepare.sh | cut -f5 -d' '); do +$ for i in $(grep "android.library.reference" project.properties | cut -f2 -d'='); do grep ^target $i/project.properties | cut -f2 -d'='; done | sort | uniq | paste -s -d',' - ```