aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorSam Whited <sam@samwhited.com>2014-10-28 12:24:25 -0400
committerSam Whited <sam@samwhited.com>2014-10-28 12:24:25 -0400
commitf7f4c794195b733b8de1c5307eacc785f5cc00f5 (patch)
tree362316850662d76f3005388e66aa1c4de77047c0 /README.md
parente3f4742ed81264b1bd40211ac7056909a8ce25ca (diff)
Add subtree merge directions to README
Diffstat (limited to 'README.md')
-rw-r--r--README.md22
1 files changed, 19 insertions, 3 deletions
diff --git a/README.md b/README.md
index c28d7e42..c7e242ee 100644
--- a/README.md
+++ b/README.md
@@ -271,9 +271,25 @@ Make sure to have ANDROID_HOME point to your Android SDK
git clone https://github.com/siacs/Conversations.git
cd Conversations
- git submodule update --init --recursive
- ant clean
- ant debug
+ ./gradlew build
+
+### How do I update/add external libraries?
+
+If the library you want to update is in Maven Central or JCenter (or has its own
+Maven repo), add it or update its version in `build.gradle`. If the library is
+in the `libs/` directory, you can update it using a subtree merge by doing the
+following (using `minidns` as an example):
+
+ git remote add minidns https://github.com/rtreffer/minidns.git
+ git fetch minidns
+ git merge -s minidns/master
+
+To add a new dependency to the `libs/` directory:
+
+ git remote add name repo-url
+ git merge -s ours --no-commit name/branch
+ git read-tree --prefix=libs/name -u name/branch
+ git commit -m "Subtree merged in name"
#### How do I debug Conversations