From 7281754c7d9d21ee5a31683a57b50ddf4855cb90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20L=C3=A9on?= Date: Mon, 24 Apr 2023 14:20:41 +0200 Subject: [PATCH] fix: fix Helper class name (#1) --- plugins/fastlane-plugin-android_cd/Gemfile | 2 +- .../lib/fastlane/plugin/android_cd/actions/build_and_deploy.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/fastlane-plugin-android_cd/Gemfile b/plugins/fastlane-plugin-android_cd/Gemfile index fcd3de1..89e0953 100644 --- a/plugins/fastlane-plugin-android_cd/Gemfile +++ b/plugins/fastlane-plugin-android_cd/Gemfile @@ -1,6 +1,6 @@ source('https://rubygems.org') -gemspec name: android_cd +gemspec plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') eval_gemfile(plugins_path) if File.exist?(plugins_path) diff --git a/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/build_and_deploy.rb b/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/build_and_deploy.rb index cd0b48d..ee63195 100644 --- a/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/build_and_deploy.rb +++ b/plugins/fastlane-plugin-android_cd/lib/fastlane/plugin/android_cd/actions/build_and_deploy.rb @@ -7,7 +7,7 @@ module Fastlane def self.run(params) # Decrypt the keys archive and Extract the keys archive - Helper::AppcenterHelper.decrypt_android_keys('../') + Helper::AndroidCdHelper.decrypt_android_keys('../') # Clean the project before building gradle(task: "clean")