Questions tagged [fastlane-pilot]

25 questions
69
votes
7 answers

Getting error "Need to acknowledge to Apple's Apple ID and Privacy statement."

Hi we're getting this error when using fastlane sigh/get_provisioning_profile. I don't think it is a fastlane issue as it happened before case1 case2 and got fixed by accepting the agreement or other unknown reason.. Need to acknowledge to Apple's…
Ted
  • 22,696
  • 11
  • 95
  • 109
22
votes
1 answer

Fastlane : [altool] Error: Unable to upload archive. Failed to get authorization for username and password

I try to upload my flutter ipa to the AppStore with fastlane using pilot with the following command: bundle exec fastlane pilot upload --ipa ../build/ios/ipa/project.ipa When I run this command I face the following error I have a .p8 in the…
Liam
  • 469
  • 1
  • 6
  • 16
11
votes
3 answers

How do I distribute a build to external testers via Fastlane?

I have a Fastfile that performs the uploadToTestFlight action: uploadToTestflight( username: "foo@example.com", skipWaitingForBuildProcessing: false, distributeExternal: true) This succeeded when I ran it. However, it didn't actually…
Senseful
  • 86,719
  • 67
  • 308
  • 465
10
votes
4 answers

Fastlane Beta: Bundler::GemNotFound: Could not find CFPropertyList-3.0.0 in any of the sources

Running fastlane beta and getting this error: Bundler::GemNotFound: Could not find CFPropertyList-3.0.0 in any of the sources I tried installing the gem through the terminal, adding it to my gemfile, updating my fastlane version... no luck. Any…
Alec Lorraine
  • 388
  • 2
  • 9
7
votes
2 answers

How to use fastlane behind proxy

I can't find any option about fastlane to set the proxy. So does there has a direct way to solve this? Thanks very much for any help!
ldjhust
  • 401
  • 3
  • 13
5
votes
1 answer

Pilot still distributing on TestFlight when skip_submission = true

When using Pilot to upload the build I'm setting skip_submission: true but the build is still distributed to internal testers. I was under the impression that only the IPA would be uploaded and it wouldn't go to testing? pilot( changelog: "Live", …
SimonTheEngineer
  • 733
  • 1
  • 7
  • 19
4
votes
2 answers

Fastlane upload_to_testflight The call to the iTMSTransporter completed with a non-zero exit status: 1. This indicates a failure

I'm trying to run fastlane to upload in App Store however I'm facing some issue. Here is my fastlane env below: ### Stack | Key | Value | | --------------------------- |…
jjjjjj
  • 91
  • 1
  • 6
4
votes
2 answers

fastlane package questions:Couldn't find app 'com.xxx.xx' on the account of 'xxx@com.cn' on iTunes Connect

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…
linitial
  • 75
  • 1
  • 7
4
votes
2 answers

Is there a way to pass the verbose flag for Fastlane Pilot in a lane?

I'm debugging my fastlane actions and lanes to understand if and how to make it faster, but have not found a way to pass the verbose flag to pilot action.
Felipe Plets
  • 7,230
  • 3
  • 36
  • 60
3
votes
0 answers

Bug fastlane & Capacitor: Transporter transfer failed with Error Codes ITMS-90713, ERROR ITMS-90022, ERROR ITMS-90023 and ITMS-90704

Issue Description Whenever I run upload_to_testflight with fastlane in a capacitor-powered app environment, I get the errors mentioned in the title of this issue and listed below: ---------------------------------- --- Step:…
natterstefan
  • 433
  • 4
  • 8
  • 21
3
votes
1 answer

iOS Fastlane deployment (TestFlight) - how to include BETA demo credentials?

We’re starting to use Fastlane for automated deployment, and it’s a very impressive toolset. One mystery, though: When submitting a BETA build to Apple’s TestFlight, how do you pass in the Demo Account credentials (username and password)? The docs…
RonDiamond
  • 2,097
  • 2
  • 14
  • 13
2
votes
1 answer

allowProvisioningUpdates not working in automatic signing fastlane

I'm trying to upload build through Github action but i'm stuck in the last point. I'm trying to upload build through automatic signing. But every time got the error. FastFile:- platform :ios do lane :closed_beta do keychain_name =…
1
vote
2 answers

Automating Fastlane Authentication for multiple lanes

I'm trying to set up Fastfile for upload to Testflight and deliver but for no reason, I can't share my lane_context for app_store_connect_api_key. Here is my Fastfile where I'm wrong. platform :ios do desc "Load ASC API Key information to use in…
nD0613
  • 135
  • 1
  • 11
1
vote
1 answer

Fastlane: Send artifect to External Groups

in our team, we are trying to send an Artifact to External Groups in TestFlight without Uploading a .Ipa. We used Pilot() to build a solution. But when we run this command in a pipeline: upload_to_testflight( api_key: api_key, build_number:…
Nicolas Papp
  • 309
  • 2
  • 4
  • 11
1
vote
2 answers

Fastlane Testflight from CircleCI

I'm trying to upload a Testflight build whenever tests pass on my develop branch using Fastlane and CircleCI. Everything goes smoothly until it gets here: Login to App Store Connect (*******************) The login credentials for…
Elliot Schrock
  • 1,406
  • 2
  • 9
  • 20
1
2