Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bitcoin-wallet/bitcoin-wallet
Bitcoin Wallet app for your Android device. Standalone Bitcoin node, no centralized backend required.
https://github.com/bitcoin-wallet/bitcoin-wallet
android bech32 bitcoin bitcoin-wallet bitcoinj blockchain java p2p segwit
Last synced: 3 days ago
JSON representation
Bitcoin Wallet app for your Android device. Standalone Bitcoin node, no centralized backend required.
- Host: GitHub
- URL: https://github.com/bitcoin-wallet/bitcoin-wallet
- Owner: bitcoin-wallet
- Created: 2012-03-31T17:06:47.000Z (over 12 years ago)
- Default Branch: main
- Last Pushed: 2024-11-14T08:19:39.000Z (29 days ago)
- Last Synced: 2024-11-26T03:04:36.973Z (17 days ago)
- Topics: android, bech32, bitcoin, bitcoin-wallet, bitcoinj, blockchain, java, p2p, segwit
- Language: Java
- Homepage:
- Size: 39.9 MB
- Stars: 3,762
- Watchers: 603
- Forks: 2,070
- Open Issues: 72
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
Awesome Lists containing this project
- Awesome-Android-Open-Source-Projects - Bitcoin-wallet
README
# BITCOIN WALLET
Welcome to _Bitcoin Wallet_, a standalone Bitcoin payment app for your Android device!
This project contains several sub-projects:
* __wallet__:
The Android app itself. This is probably what you're searching for.
* __market__:
App description and promo material for the Google Play app store.### PREREQUISITES FOR BUILDING
You'll need git, a Java 11 SDK and Gradle between 4.4 and 6.9.x for this. We'll assume Ubuntu 24.04 LTS (Noble Numbat)
for the package installs, which comes with OpenJDK 11 and Gradle 4.4.1 out of the box.# first time only
sudo apt install git gradle openjdk-11-jdkCreate a directory for the Android SDK (e.g. `android-sdk`) and point the `ANDROID_HOME` variable to it.
Download the [Android SDK Tools](https://developer.android.com/studio/index.html#command-tools)
and unpack it to `$ANDROID_HOME/`.Finally, the last preparative step is acquiring the source code. Again in your workspace, use:
# first time only
git clone -b main https://github.com/bitcoin-wallet/bitcoin-wallet.git bitcoin-wallet
cd bitcoin-wallet### BUILDING
You can build all sub-projects in all flavors at once using Gradle:
# each time
gradle clean buildFor details about building the wallet see the [specific README](wallet/README.md).
### REPRODUCIBLE BUILD
Alternatively, you can build using buildah:
# each time
buildah build --cap-add sys_admin --device /dev/fuse --file build.Containerfile --output build/ .Access to FUSE and the SYS_ADMIN capability are needed for mounting disorderfs
in order to sort the directory entries of the project folder.The unsigned APKs are written to the specified output directory.