forked from divslinger/Android-Merchant-App
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
2 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |