From 1062d3d9e2657bc1757195f0d545f4d85cd6c0ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20L=C3=A9on?= Date: Thu, 22 Jun 2023 14:12:56 +0200 Subject: [PATCH 1/2] fix: remove projectDir field --- .../plugin/android_cd/actions/build_and_deploy_action.rb | 1 - .../lib/fastlane/plugin/android_cd/helper/android_cd_helper.rb | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/build_and_deploy_action.rb b/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/build_and_deploy_action.rb index 423a537..96cb08f 100644 --- a/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/build_and_deploy_action.rb +++ b/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/build_and_deploy_action.rb @@ -28,7 +28,6 @@ module Fastlane task: "bundle", build_type: "Release", print_command: true, - project_dir: 'android/', properties: { "android.injected.version.code" => build_number } diff --git a/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/helper/android_cd_helper.rb b/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/helper/android_cd_helper.rb index 43f38cd..25c6e51 100644 --- a/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/helper/android_cd_helper.rb +++ b/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/helper/android_cd_helper.rb @@ -13,7 +13,7 @@ module Fastlane # Check if the command executed successfully if $?.success? - + f # Move the extracted files to the current directory `jar xvf #{android_directory}/android_keys.zip && mv #{android_directory}/android_keys/* #{android_directory}` else -- 2.47.2 From ca2efae3c7857e8e6bdb1a0731db29c11eeb60ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20L=C3=A9on?= Date: Thu, 22 Jun 2023 14:14:22 +0200 Subject: [PATCH 2/2] fix: syntax error --- .../lib/fastlane/plugin/android_cd/helper/android_cd_helper.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/helper/android_cd_helper.rb b/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/helper/android_cd_helper.rb index 25c6e51..619583e 100644 --- a/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/helper/android_cd_helper.rb +++ b/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/helper/android_cd_helper.rb @@ -13,7 +13,6 @@ module Fastlane # Check if the command executed successfully if $?.success? - f # Move the extracted files to the current directory `jar xvf #{android_directory}/android_keys.zip && mv #{android_directory}/android_keys/* #{android_directory}` else -- 2.47.2