From 19a34cbc584a2e7c7f6d65e6c98b9f9f99739a7b Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 8 Feb 2021 12:33:51 +0100 Subject: read play store API key from environment variable --- cashier/fastlane/Appfile | 2 +- merchant-terminal/fastlane/Appfile | 2 +- wallet/fastlane/Appfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cashier/fastlane/Appfile b/cashier/fastlane/Appfile index ca67ba4..9868353 100644 --- a/cashier/fastlane/Appfile +++ b/cashier/fastlane/Appfile @@ -1,2 +1,2 @@ -json_key_file("../../api-5955905454448196576-583043-ea133c8ceb16.json") +json_key_file(ENV["TALER_JSON_KEY_FILE"]) package_name("net.taler.cashier") diff --git a/merchant-terminal/fastlane/Appfile b/merchant-terminal/fastlane/Appfile index df5a7c3..0ac8c50 100644 --- a/merchant-terminal/fastlane/Appfile +++ b/merchant-terminal/fastlane/Appfile @@ -1,2 +1,2 @@ -json_key_file("../../api-5955905454448196576-583043-ea133c8ceb16.json") +json_key_file(ENV["TALER_JSON_KEY_FILE"]) package_name("net.taler.merchantpos") diff --git a/wallet/fastlane/Appfile b/wallet/fastlane/Appfile index 3166568..b8db13f 100644 --- a/wallet/fastlane/Appfile +++ b/wallet/fastlane/Appfile @@ -1,2 +1,2 @@ -json_key_file("../../api-5955905454448196576-583043-ea133c8ceb16.json") +json_key_file(ENV["TALER_JSON_KEY_FILE"]) package_name("net.taler.wallet") -- cgit v1.2.3