Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
logiclove committed Feb 9, 2020
2 parents 05d0bf3 + 96026cc commit 55c8216
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 3 deletions.
27 changes: 24 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
Bitcoin Cash Merchant (BCH)

Forked from https://github.com/blockchain/Android-Merchant-App

This app allows you to accept Bitcoin Cash (BCH) payments at any retail location.
All it requires is a public key or an extended public key linked
to your Bitcoin wallet to start receiving Bitcoin Cash (BCH) payments.
to your Bitcoin wallet to start receiving Bitcoin Cash (BCH) payments.

The Bitcoin Cash Register is a simple and easy to use Point of Sale application that allows you to accept Bitcoin Cash (BCH) payments—with ZERO fees to receive! (The sender pays less than a penny.)

There’s no sign-up process and no account to manage. Just enter either a standard Bitcoin Cash address or an “extended public key” (aka an “xpub”) from your Bitcoin Cash wallet to start accepting instant and secure Bitcoin Cash payments at your business.

The simple interface means less time training employees and troubleshooting technical issues. Just enter the payment amount in your local currency and show the customer the QR code, scannable by all major BCH wallets.

Other features include:
- Employee Friendly Security: settings can only be changed using PIN code, and the app stores no funds itself
- Local Currency Conversion: choose from over 200 fiat currencies for entering payment amounts
- Transaction History: view all past transactions for your book-keeping needs
- Enhanced Privacy: the Bitcoin Cash Register generates a new address for each transaction when provided with an extended public key
- Open Source: anyone can review the source code for this app at https://github.com/Bitcoin-com/Android-Merchant-App

Why accept Bitcoin Cash?
- Say goodbye to credit card fees! Bitcoin Cash costs absolutely nothing to receive
- Customers pay less than a penny in transaction fees to send
- No registration is required to accept BCH. Just download a free, open-source wallet, like the official Bitcoin.com Bitcoin Wallet
- No one can freeze your wallet
- No one can seize your funds
- No one can block your payments

Start accepting Bitcoin Cash using the Bitcoin Cash Register for a superior payment experience!
13 changes: 13 additions & 0 deletions scripts/move_crownin_files_after_download.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash
dirs=("values-ar-rSA" "values-de-rDE" "values-en-rUS" "values-es-rES" "values-fr-rFR" "values-it-rIT" "values-ja-rJP" "values-pt-rPT" "values-ru-rRU")
prefix=app/src/main/res
mv $prefix/values-en/strings.xml $prefix/values
rm -d $prefix/values-en
for dir in ${dirs[*]}
do
sourceDir=$prefix/$dir
targetDir=$prefix/${dir:0:9}
echo mv $sourceDir/strings.xml $targetDir
mv $sourceDir/strings.xml $targetDir
rm -d $sourceDir
done

0 comments on commit 55c8216

Please sign in to comment.