From a4796ec47d89a851b260b6fc195494547208a025 Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Wed, 18 Mar 2020 14:24:41 -0300 Subject: Merge all three apps into one repository --- wallet/README.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 wallet/README.md (limited to 'wallet/README.md') diff --git a/wallet/README.md b/wallet/README.md new file mode 100644 index 0000000..63b128b --- /dev/null +++ b/wallet/README.md @@ -0,0 +1,40 @@ +GNU Taler Wallet +================ + +This package implements a GNU Taler wallet for Android. +It is currently a UI for the wallet writen in TypeScript. + + +Building +======== + +Currently, building the wallet for Android requires manually copying two +dependencies: + +`akono.aar` -> `../akono/akono.aar` +`taler-wallet-android.js` -> `src/main/assets/taler-wallet-android.js` + +After that, the Android wallet can be built with Gradle: + + $ ./gradlew build + + +Obtaining Dependencies +====================== + +There are two ways of obtaining the dependencies. The easiest one is +to use the pre-built versions, which are stored in the "binary-deps" +branch of this repository. + +An easy way to access them is using a git worktree: + + $ git fetch origin binary-deps + $ git worktree add binary-deps binary-deps + $ cp binary-deps/akono.aar ../akono/akono.aar + $ cp binary-deps/taler-wallet-android.js src/main/assets/taler-wallet-android.js + $ git worktree remove binary-deps + +Alternatively, you can build them yourself from the respective repositories: + + * git://git.taler.net/akono.git + * git://git.taler.net/wallet-core.git -- cgit v1.2.3