Fix path for native symbols

This commit is contained in:
Gergely Hegedus 2025-05-01 17:21:12 +03:00
parent 9715341d9e
commit 19140d2c26

View file

@ -82,7 +82,7 @@ platform :android do
output_path = options[:output_path] || './native_debug_symbols.zip' output_path = options[:output_path] || './native_debug_symbols.zip'
build_type_and_flavour = options[:build_type_and_flavour] || 'release' build_type_and_flavour = options[:build_type_and_flavour] || 'release'
symbolsFilePath = File.join(Dir.pwd, "..", output_path) 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} .") system("cd #{symbolsFolderPath} && zip -r #{symbolsFilePath} .")
end end