Rename build.prop to ant.prop, add ant-prepare.sh

This commit is contained in:
Daniel Martí 2014-01-09 12:35:38 +01:00
parent 350d77aec6
commit 9b28fde89f
3 changed files with 7 additions and 4 deletions

View File

@ -12,10 +12,7 @@ The only required tools are the Android SDK and Apache Ant.
``` ```
git submodule update --init git submodule update --init
android update project -p . --name F-droid ./ant-prepare.sh # This runs 'android update' on the libs and the main project
android update lib-project -p extern/Universal-Image-Loader/library
android update lib-project -p extern/AndroidPinning -t android-17
android update lib-project -p extern/MemorizingTrustManager
ant clean release ant clean release
``` ```

6
ant-prepare.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash -ex
android update lib-project -p extern/Universal-Image-Loader/library
android update lib-project -p extern/AndroidPinning -t android-17
android update lib-project -p extern/MemorizingTrustManager
android update project -p . --name F-Droid