Bitcoin Wallet

适用于Android设备的比特币钱包应用。 独立比特币节点,无需集中后端。(Bitcoin Wallet app for your Android device. Standalone Bitcoin node, no centralized backend required.)

Github stars Tracking Chart

欢迎使用 Bitcoin Wallet(比特币钱包),这是一款适用于Android设备的独立比特币付款应用程序!

这个项目包含几个子项目:

  • wallet:Android应用程序本身。这可能是您正在搜索的内容。
  • market: 适用于Google Play应用商店的应用说明和宣传材料。
  • integration-android:将比特币支付集成到您自己的Android应用程序中的小型库 (例如捐赠,应用内购买)。
  • sample-integration-android:一个最小的示例应用程序,用于演示将比特币支付集成到您的Android应用程序中。

您可以使用Gradle一次构建所有子项目:

gradle clean build

您可以从您选择的应用商店安装应用:

Overview

Name With Ownerbitcoin-wallet/bitcoin-wallet
Primary LanguageJava
Program languageJava (Language Count: 1)
PlatformAndroid
License:
Release Count435
Last Release Namev10.14 (Posted on 2024-03-14 18:28:30)
First Release Namev2.46 (Posted on 2013-03-23 21:19:00)
Created At2012-03-31 17:06:47
Pushed At2024-05-11 09:56:00
Last Commit At
Stargazers Count3.6k
Watchers Count589
Fork Count2k
Commits Count4.4k
Has Issues Enabled
Issues Count582
Issue Open Count66
Pull Requests Count7
Pull Requests Open Count8
Pull Requests Close Count170
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private

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.
  • integration-android:
    A tiny library for integrating Bitcoin payments into your own Android app
    (e.g. donations, in-app purchases).
  • sample-integration-android:
    A minimal example app to demonstrate integration of Bitcoin payments into
    your Android app.

PREREQUISITES FOR BUILDING

You'll need git, a Java 8 SDK (or later) and Gradle 4.4 (or later) for this. We'll assume Ubuntu 18.04 LTS (Bionic Beaver)
for the package installs, which comes with OpenJDK 8 and Gradle 4.4.1 out of the box.

# first time only
sudo apt install git gradle openjdk-8-jdk

Create a directory for the Android SDK (e.g. android-sdk) and point the ANDROID_HOME variable to it.

Download the Android SDK 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 master 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 build

For details about building the wallet see the specific README.

BINARIES

You can install the app from the app store of your choice:

  • Testnet:
    F-Droid, Google Play
  • Mainnet:
    F-Droid, Google Play
To the top