Fastlane: Path to Assets folder

Hi,

I’m trying to config Fastlane to upload ios build symbol to firebase, but it could not find the GoogleService-Info.plist file location in Assets folder.

lane :upload_dsym do
    upload_symbols_to_crashlytics(
        {
            gsp_path: "./Assets/GoogleService-Info.plist"
          }
    )
end

Error: Couldn’t find file at path ‘/BUILD_PATH/proj_name/tempABC/Assets/GoogleService-Info.plist’
Can anyone help?

Thanks

Solved.
Source default path: /BUILD_PATH/proj_name/
Fastlane default path: /BUILD_PATH/proj_name/temp_folder
So i just need to change config to gsp_path: “…/Assets/GoogleService-Info.plist”