From 19140d2c26924fadcecb9261d929a7f50caccb15 Mon Sep 17 00:00:00 2001 From: Gergely Hegedus Date: Thu, 1 May 2025 17:21:12 +0300 Subject: [PATCH] Fix path for native symbols --- fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index d8f9130..b37b85a 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -82,7 +82,7 @@ platform :android do output_path = options[:output_path] || './native_debug_symbols.zip' build_type_and_flavour = options[:build_type_and_flavour] || 'release' symbolsFilePath = File.join(Dir.pwd, "..", output_path) - symbolsFolderPath = File.join(Dir.pwd, "..", "app/build/intermediates/merged_native_libs",build_type_and_flavour,"out/lib") + symbolsFolderPath = File.join(Dir.pwd, "..", "app/build/intermediates/merged_native_libs",build_type_and_flavour,"mergeReleaseNativeLibs/out/lib") system("cd #{symbolsFolderPath} && zip -r #{symbolsFilePath} .") end