Bitcoin Wallet

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

Github星跟蹤圖

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

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

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

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

gradle clean build

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

概覽

名稱與所有者bitcoin-wallet/bitcoin-wallet
主編程語言Java
編程語言Java (語言數: 1)
平台Android
許可證
發布數435
最新版本名稱v10.14 (發布於 2024-03-14 18:28:30)
第一版名稱v2.46 (發布於 2013-03-23 21:19:00)
創建於2012-03-31 17:06:47
推送於2024-05-11 09:56:00
最后一次提交
星數3.6k
關注者數589
派生數2k
提交數4.4k
已啟用問題?
問題數582
打開的問題數66
拉請求數7
打開的拉請求數8
關閉的拉請求數170
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?

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
去到頂部