From e09fa7fcf4ba6bac8e2190e996f73532201cd0f3 Mon Sep 17 00:00:00 2001 From: rotieno Date: Mon, 15 Jul 2024 22:05:53 +0300 Subject: [PATCH 1/3] chore: use version code from no of commits --- .buildsystem/versioning.gradle | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.buildsystem/versioning.gradle b/.buildsystem/versioning.gradle index ca1b95b..04b132e 100644 --- a/.buildsystem/versioning.gradle +++ b/.buildsystem/versioning.gradle @@ -9,7 +9,12 @@ ext.getVersionCode = { -> try { - return 2 + def stdout = new ByteArrayOutputStream() + exec { + commandLine 'git', 'rev-list', '--all', '--count' + standardOutput = stdout + } + return stdout.toString().trim().toInteger() } catch (ignored) { return -1; From 68d50d1d5ec5b13935342fbfb15b9ea7d4d0b41b Mon Sep 17 00:00:00 2001 From: rotieno Date: Mon, 15 Jul 2024 22:06:23 +0300 Subject: [PATCH 2/3] chore: upgrade fastlane gem --- Gemfile.lock | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index c66359b..cd40ef3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -211,7 +211,8 @@ GEM xcpretty (~> 0.2, >= 0.0.7) PLATFORMS - x64-mingw-ucrt + universal-darwin-23 + x64-unknown x86_64-darwin-17 DEPENDENCIES From 3aef62c8406b981224e1892cbfce215a23f8b041 Mon Sep 17 00:00:00 2001 From: rotieno Date: Mon, 15 Jul 2024 22:20:20 +0300 Subject: [PATCH 3/3] chore: remove ad id permission --- ui/src/main/AndroidManifest.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/src/main/AndroidManifest.xml b/ui/src/main/AndroidManifest.xml index 0309b91..b126e13 100644 --- a/ui/src/main/AndroidManifest.xml +++ b/ui/src/main/AndroidManifest.xml @@ -2,11 +2,16 @@ xmlns:tools="http://schemas.android.com/tools" package="com.rowland.delivery.merchant"> + + +