gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-taler-android] branch master updated: [wallet] manage Google Play


From: gnunet
Subject: [taler-taler-android] branch master updated: [wallet] manage Google Play data with fastlane
Date: Fri, 24 Apr 2020 16:52:01 +0200

This is an automated email from the git hooks/post-receive script.

torsten-grote pushed a commit to branch master
in repository taler-android.

The following commit(s) were added to refs/heads/master by this push:
     new d576e64  [wallet] manage Google Play data with fastlane
d576e64 is described below

commit d576e64ba5fcefd3f8bec0379d776662fad21678
Author: Torsten Grote <address@hidden>
AuthorDate: Fri Apr 24 11:50:58 2020 -0300

    [wallet] manage Google Play data with fastlane
---
 .gitignore                                         |   7 +++++
 wallet/fastlane/Appfile                            |   2 ++
 wallet/fastlane/Fastfile                           |  33 +++++++++++++++++++++
 .../metadata/android/en-US/changelogs/7.txt        |   1 +
 .../metadata/android/en-US/full_description.txt    |  11 +++++++
 .../android/en-US/images/featureGraphic.png        | Bin 0 -> 105117 bytes
 .../metadata/android/en-US/images/icon.png         | Bin 0 -> 14129 bytes
 .../images/phoneScreenshots/1_balance_empty.png    | Bin 0 -> 68330 bytes
 .../2_balance_with_transactions.png                | Bin 0 -> 191281 bytes
 .../en-US/images/phoneScreenshots/3_nav_drawer.png | Bin 0 -> 114448 bytes
 .../images/phoneScreenshots/4_payment_confirm.png  | Bin 0 -> 82667 bytes
 .../metadata/android/en-US/short_description.txt   |   1 +
 wallet/fastlane/metadata/android/en-US/title.txt   |   1 +
 wallet/fastlane/metadata/android/en-US/video.txt   |   0
 wallet/src/main/res/values/strings.xml             |  28 +++++++++++++----
 15 files changed, 78 insertions(+), 6 deletions(-)

diff --git a/.gitignore b/.gitignore
index 84587f2..7e4952a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,3 +16,10 @@
 .externalNativeBuild
 .cxx
 /*/release/
+
+# Fastlane
+*/Gemfile
+*/Gemfile.lock
+*/fastlane/report.xml
+*/fastlane/README.md
+*/fastlane/metadata/android/screenshots.html
diff --git a/wallet/fastlane/Appfile b/wallet/fastlane/Appfile
new file mode 100644
index 0000000..3166568
--- /dev/null
+++ b/wallet/fastlane/Appfile
@@ -0,0 +1,2 @@
+json_key_file("../../api-5955905454448196576-583043-ea133c8ceb16.json")
+package_name("net.taler.wallet")
diff --git a/wallet/fastlane/Fastfile b/wallet/fastlane/Fastfile
new file mode 100644
index 0000000..559acac
--- /dev/null
+++ b/wallet/fastlane/Fastfile
@@ -0,0 +1,33 @@
+# This file contains the fastlane.tools configuration
+# You can find the documentation at https://docs.fastlane.tools
+#
+# For a list of all available actions, check out
+#
+#     https://docs.fastlane.tools/actions
+#
+# For a list of all available plugins, check out
+#
+#     https://docs.fastlane.tools/plugins/available-plugins
+#
+
+# Uncomment the line if you want fastlane to automatically update itself
+# update_fastlane
+
+opt_out_usage
+
+default_platform(:android)
+
+platform :android do
+  desc "Runs all the tests"
+  lane :test do
+    gradle(task: "test", gradle_path: '../gradlew')
+  end
+
+  desc "Deploy a new version to the Google Play beta track"
+  lane :deploy do
+    gradle(task: "clean assembleRelease", gradle_path: '../gradlew')
+    upload_to_play_store(track: 'beta', skip_upload_images: 'true', 
skip_upload_screenshots: 'true', validate_only: 'true')
+  end
+end
+
+# vi:syntax=ruby
diff --git a/wallet/fastlane/metadata/android/en-US/changelogs/7.txt 
b/wallet/fastlane/metadata/android/en-US/changelogs/7.txt
new file mode 100644
index 0000000..88521f9
--- /dev/null
+++ b/wallet/fastlane/metadata/android/en-US/changelogs/7.txt
@@ -0,0 +1 @@
+Updated to the latest protocol version.
\ No newline at end of file
diff --git a/wallet/fastlane/metadata/android/en-US/full_description.txt 
b/wallet/fastlane/metadata/android/en-US/full_description.txt
new file mode 100644
index 0000000..5d5c1dc
--- /dev/null
+++ b/wallet/fastlane/metadata/android/en-US/full_description.txt
@@ -0,0 +1,11 @@
+This app is a wallet for GNU Taler. It is highly experimental, and not ready 
for production use yet.
+
+GNU Taler is a privacy-preserving payment system. Customers can stay 
anonymous, but merchants can not hide their income through payments with GNU 
Taler. This helps to avoid tax evasion and money laundering.
+
+The primary use case of GNU Taler is payments; it is not meant as a store of 
value. Payments are always backed by an existing currency.
+
+Payment are made after exchanging existing money into electronic money with 
the help of an Exchange service, that is, a payment service provider for Taler.
+
+When making a payment, customers only need a charged wallet. A merchant can 
accept payments without making their customers register on the merchant's 
Website.
+
+GNU Taler is immune against many types of fraud, such as phishing of credit 
card information or chargeback fraud. In case of loss or theft, only the 
limited amount of money left in the wallet might be gone.
\ No newline at end of file
diff --git a/wallet/fastlane/metadata/android/en-US/images/featureGraphic.png 
b/wallet/fastlane/metadata/android/en-US/images/featureGraphic.png
new file mode 100644
index 0000000..f416098
Binary files /dev/null and 
b/wallet/fastlane/metadata/android/en-US/images/featureGraphic.png differ
diff --git a/wallet/fastlane/metadata/android/en-US/images/icon.png 
b/wallet/fastlane/metadata/android/en-US/images/icon.png
new file mode 100644
index 0000000..f0f6be7
Binary files /dev/null and 
b/wallet/fastlane/metadata/android/en-US/images/icon.png differ
diff --git 
a/wallet/fastlane/metadata/android/en-US/images/phoneScreenshots/1_balance_empty.png
 
b/wallet/fastlane/metadata/android/en-US/images/phoneScreenshots/1_balance_empty.png
new file mode 100644
index 0000000..e739e79
Binary files /dev/null and 
b/wallet/fastlane/metadata/android/en-US/images/phoneScreenshots/1_balance_empty.png
 differ
diff --git 
a/wallet/fastlane/metadata/android/en-US/images/phoneScreenshots/2_balance_with_transactions.png
 
b/wallet/fastlane/metadata/android/en-US/images/phoneScreenshots/2_balance_with_transactions.png
new file mode 100644
index 0000000..65184db
Binary files /dev/null and 
b/wallet/fastlane/metadata/android/en-US/images/phoneScreenshots/2_balance_with_transactions.png
 differ
diff --git 
a/wallet/fastlane/metadata/android/en-US/images/phoneScreenshots/3_nav_drawer.png
 
b/wallet/fastlane/metadata/android/en-US/images/phoneScreenshots/3_nav_drawer.png
new file mode 100644
index 0000000..5d1919a
Binary files /dev/null and 
b/wallet/fastlane/metadata/android/en-US/images/phoneScreenshots/3_nav_drawer.png
 differ
diff --git 
a/wallet/fastlane/metadata/android/en-US/images/phoneScreenshots/4_payment_confirm.png
 
b/wallet/fastlane/metadata/android/en-US/images/phoneScreenshots/4_payment_confirm.png
new file mode 100644
index 0000000..fa9b726
Binary files /dev/null and 
b/wallet/fastlane/metadata/android/en-US/images/phoneScreenshots/4_payment_confirm.png
 differ
diff --git a/wallet/fastlane/metadata/android/en-US/short_description.txt 
b/wallet/fastlane/metadata/android/en-US/short_description.txt
new file mode 100644
index 0000000..61c44fa
--- /dev/null
+++ b/wallet/fastlane/metadata/android/en-US/short_description.txt
@@ -0,0 +1 @@
+GNU Taler makes privacy-friendly online transactions fast and easy.
\ No newline at end of file
diff --git a/wallet/fastlane/metadata/android/en-US/title.txt 
b/wallet/fastlane/metadata/android/en-US/title.txt
new file mode 100644
index 0000000..bd84ef2
--- /dev/null
+++ b/wallet/fastlane/metadata/android/en-US/title.txt
@@ -0,0 +1 @@
+Taler Wallet (experimental)
\ No newline at end of file
diff --git a/wallet/fastlane/metadata/android/en-US/video.txt 
b/wallet/fastlane/metadata/android/en-US/video.txt
new file mode 100644
index 0000000..e69de29
diff --git a/wallet/src/main/res/values/strings.xml 
b/wallet/src/main/res/values/strings.xml
index 4531785..cc846cd 100644
--- a/wallet/src/main/res/values/strings.xml
+++ b/wallet/src/main/res/values/strings.xml
@@ -14,9 +14,25 @@
   ~ GNU Taler; see the file COPYING.  If not, see 
<http://www.gnu.org/licenses/>
   -->
 
-<resources>
+<resources xmlns:tools="http://schemas.android.com/tools";>
     <string name="app_name">Taler Wallet</string>
 
+    <string name="google_play_title" 
tools:keep="@string/google_play_title">Taler Wallet (experimental)</string>
+    <string name="google_play_short_desc" 
tools:keep="@string/google_play_short_desc">GNU Taler makes privacy-friendly 
online transactions fast and easy.</string>
+    <string name="google_play_full_desc" 
tools:keep="@string/google_play_full_desc"><![CDATA[
+This app is a wallet for GNU Taler. It is highly experimental, and not ready 
for production use yet.
+
+GNU Taler is a privacy-preserving payment system. Customers can stay 
anonymous, but merchants can not hide their income through payments with GNU 
Taler. This helps to avoid tax evasion and money laundering.
+
+The primary use case of GNU Taler is payments; it is not meant as a store of 
value. Payments are always backed by an existing currency.
+
+Payment are made after exchanging existing money into electronic money with 
the help of an Exchange service, that is, a payment service provider for Taler.
+
+When making a payment, customers only need a charged wallet. A merchant can 
accept payments without making their customers register on the merchant\'s 
Website.
+
+GNU Taler is immune against many types of fraud, such as phishing of credit 
card information or chargeback fraud. In case of loss or theft, only the 
limited amount of money left in the wallet might be gone.
+]]></string>
+
     <string name="nav_header_title">GNU Taler</string>
     <string name="nav_header_subtitle">Wallet</string>
     <string name="nav_header_desc">Navigation header</string>
@@ -56,9 +72,9 @@
     <string name="transaction_reserve_balance_updated">Reserve Balance 
Updated</string>
     <string name="transaction_payment">Payment</string>
     <string name="transaction_paid">Paid</string>
-    <string name="transaction_order_total">Order Total</string>
-    <string name="transaction_order">Order</string>
-    <string name="transaction_order_id">Order Reference: %1$s</string>
+    <string name="transaction_order_total">Total</string>
+    <string name="transaction_order">Purchase</string>
+    <string name="transaction_order_id">Purchase Reference: %1$s</string>
     <string name="transaction_order_accepted">Purchase Confirmed</string>
     <string name="transaction_order_refused">Purchase Cancelled</string>
     <string name="transaction_tip_accepted">Tip Accepted</string>
@@ -75,7 +91,7 @@
     <string name="payment_fee">+%s payment fee</string>
     <string name="payment_button_confirm">Confirm Payment</string>
     <string name="payment_label_amount_total">Total Amount:</string>
-    <string name="payment_label_order_summary">Order</string>
+    <string name="payment_label_order_summary">Purchase</string>
     <string name="payment_error">Error: %s</string>
     <string name="payment_balance_insufficient">Balance insufficient!</string>
     <string name="payment_show_details">Show Details</string>
@@ -83,7 +99,7 @@
     <string name="payment_successful">Payment was successful</string>
     <string name="payment_back_button">OK</string>
     <string name="payment_already_paid_title">Already paid</string>
-    <string name="payment_already_paid">You\'ve already paid for this 
order.</string>
+    <string name="payment_already_paid">You\'ve already paid for this 
purchase.</string>
 
     <string name="withdraw_accepted">Withdrawal accepted</string>
     <string name="withdraw_success_info">The wire transfer now needs to be 
confirmed with the bank. Once the wire transfer is complete, the digital cash 
will automatically show in this wallet.</string>

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]