I am a new user of fastlane and stackoverflow,if there is any problem, please forgive me. my developer p12 and pp file are created by Apple ID A, distribution p12 and pp file are created by Apple ID B, i got an apple ID C to public applictions. All of the p12 and pp files are on my local computer. Now, when I use the gym to pack automatically, how could I write the lane manual settings for the local p12 certificate and the PP files.
i didnt find any useful information from gym parameters,with my poor ruby knowledge and i even dont know how to use 'skip_profile_detection' .
this is my lane:
lane :beta do
Ipaname = get_version_number + '_beta_' + get_build_number + '.ipa'
gym(#打包
scheme: ENV['SCHEME_NAME'],
export_method: "development",
output_name: Ipaname,
output_directory: "/Users/user/Desktop/"
)
end