Conflicting Apple Developer accounts
Cannot record/playback the application because of multiple Apple Developer accounts conflict.
Open terminal, run the following commands:There are two fields in the commands above:
sudo gem install fastlane -NV
hash -r # for bash
rehash # for zsh
fastlane sigh resign ./path/app.ipa --signing_identity "Apple Distribution: Company Name" -p "my.mobileprovision"
--signing_identity
: Apple Distribution - Company Name-p
: Provisioning profile path
To get the correct value of the field --signing_identity
, run security find-identity -v -p codesigning
. To get the correct value of the field -p
, we need to navigate to the provisioning profile folder: ~/Library/MobileDevice/Provisioning\ Profiles
.