commit b0b2b7f0f86d21f1157af691e3d640b495203e45 parent a6332a0c02e3924ca68dca957ecc153a554c3deb Author: Torsten Grote <t@grobox.de> Date: Tue, 8 Sep 2020 11:17:14 -0300 [pos] prepare for play store upload Diffstat:
15 files changed, 58 insertions(+), 3 deletions(-)
diff --git a/merchant-terminal/.gitignore b/merchant-terminal/.gitignore @@ -1 +1,2 @@ /build +/.bundle diff --git a/merchant-terminal/build.gradle b/merchant-terminal/build.gradle @@ -14,8 +14,8 @@ android { applicationId "net.taler.merchantpos" minSdkVersion 24 targetSdkVersion 29 - versionCode 1 - versionName "1.0" + versionCode 2 + versionName "0.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -69,7 +69,7 @@ dependencies { implementation "com.google.android.material:material:$material_version" implementation "androidx.constraintlayout:constraintlayout:$constraintlayout_version" implementation "androidx.recyclerview:recyclerview:1.1.0" - implementation "androidx.recyclerview:recyclerview-selection:1.1.0-rc01" + implementation "androidx.recyclerview:recyclerview-selection:1.1.0-rc02" // Navigation implementation "androidx.navigation:navigation-fragment-ktx:$nav_version" diff --git a/merchant-terminal/fastlane/Appfile b/merchant-terminal/fastlane/Appfile @@ -0,0 +1,2 @@ +json_key_file("../../api-5955905454448196576-583043-ea133c8ceb16.json") +package_name("net.taler.merchantpos") diff --git a/merchant-terminal/fastlane/Fastfile b/merchant-terminal/fastlane/Fastfile @@ -0,0 +1,42 @@ +# 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 "Deploy a new version to the Google Play beta track" + lane :deploy do + gradle( + task: "bundle", + build_type: "Release", + gradle_path: '../gradlew', + properties: { + "android.injected.signing.store.file" => ENV["TALER_KEYSTORE_PATH"], + "android.injected.signing.store.password" => ENV["TALER_KEYSTORE_PASS"], + "android.injected.signing.key.alias" => ENV["TALER_KEYSTORE_POS_ALIAS"], + "android.injected.signing.key.password" => ENV["TALER_KEYSTORE_POS_PASS"], + } + ) + upload_to_play_store( + track: 'beta', + skip_upload_images: 'true', + skip_upload_screenshots: 'true', + skip_upload_apk: 'true', # This is an app bundle, so APK is not possible + validate_only: 'true' + ) + end +end diff --git a/merchant-terminal/fastlane/metadata/android/en-US/full_description.txt b/merchant-terminal/fastlane/metadata/android/en-US/full_description.txt @@ -0,0 +1,5 @@ +The GNU Taler merchant POS (point of sale) terminal allows sellers to + +* process customers’ orders by adding or removing products +* calculate the amount owed by the customer +* let the customer make a Taler payment via QR code or NFC +\ No newline at end of file diff --git a/merchant-terminal/fastlane/metadata/android/en-US/images/featureGraphic.png b/merchant-terminal/fastlane/metadata/android/en-US/images/featureGraphic.png Binary files differ. diff --git a/merchant-terminal/fastlane/metadata/android/en-US/images/icon.png b/merchant-terminal/fastlane/metadata/android/en-US/images/icon.png Binary files differ. diff --git a/merchant-terminal/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png b/merchant-terminal/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png Binary files differ. diff --git a/merchant-terminal/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png b/merchant-terminal/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png Binary files differ. diff --git a/merchant-terminal/fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png b/merchant-terminal/fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png Binary files differ. diff --git a/merchant-terminal/fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png b/merchant-terminal/fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png Binary files differ. diff --git a/merchant-terminal/fastlane/metadata/android/en-US/images/phoneScreenshots/5_en-US.png b/merchant-terminal/fastlane/metadata/android/en-US/images/phoneScreenshots/5_en-US.png Binary files differ. diff --git a/merchant-terminal/fastlane/metadata/android/en-US/short_description.txt b/merchant-terminal/fastlane/metadata/android/en-US/short_description.txt @@ -0,0 +1 @@ +Process orders and take in Taler payments +\ No newline at end of file diff --git a/merchant-terminal/fastlane/metadata/android/en-US/title.txt b/merchant-terminal/fastlane/metadata/android/en-US/title.txt @@ -0,0 +1 @@ +Taler Point-of-Sale Merchant Terminal +\ No newline at end of file diff --git a/merchant-terminal/fastlane/metadata/android/en-US/video.txt b/merchant-terminal/fastlane/metadata/android/en-US/video.txt