enter image description here this is my first time to use fastlane, i want to upload ipa file to testflight, in the Fastfile, i write this: enter image description here
but when i excuted 'fastlane beta' in command line, it appeared error "Couldn't find app 'com.xxx.RFTestDemo' on the account of '[email protected]' on iTunes Connect", i don't know what's wrong, hope someone to help me, thanks very much.
I faced this same issue when running
fastlane ios betadespite having the app correctly set up on my account, and found the cause to be the app identifier in my project's fastlane configuration was mis-spelt using the wrong case (eg 'com.Pxxx' instead of 'com.pxxx').Correcting this in the first line of
ios/fastlane/Appfilefixed the issue for me.