From 5790397a27e006c8a1902407d92cb948c76afbbc Mon Sep 17 00:00:00 2001 From: Patrick Honkonen <1883101+SaintPatrck@users.noreply.github.com> Date: Wed, 12 Feb 2025 18:41:31 -0500 Subject: [PATCH] [PM-16534] Update gradle invocations to specify authenticator module (#344) --- fastlane/Fastfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 2f082ed228..6cc3a352f1 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -75,16 +75,16 @@ platform :android do desc "Assemble debug variants" lane :buildAuthenticatorDebug do gradle( - task: "assemble", + task: "authenticator:assemble", build_type: "Debug", print_command: false, ) end desc "Assemble and sign release APK" - lane :buildAuthenticatordRelease do |options| + lane :buildAuthenticatorRelease do |options| gradle( - task: "assemble", + task: "authenticator:assemble", build_type: "Release", properties: { "android.injected.signing.store.file" => options[:storeFile], @@ -99,7 +99,7 @@ platform :android do desc "Bundle and sign release AAB" lane :bundleAuthenticatorRelease do |options| gradle( - task: "bundle", + task: "authenticator:bundle", build_type: "Release", properties: { "android.injected.signing.store.file" => options[:storeFile],