Questions tagged [fastlane]

fastlane is a Continuous Delivery solution for mobile apps. It consists of several tools to automate the various aspects of your deployment pipeline

Tools such as gym, pem, sigh, frameit, match for iOS and supply & screengrab for Android.

More information on fastlane.tools

1450 questions
24
votes
1 answer

How to set environment variables in fastlane?

I had read the documents but I am still confused where to set the environment variables in the fastfile or the bash_profile. Can you please help me out with that? What I want to achieve is to set the apple developer credentials in fastfile and…
Parth Adroja
  • 13,198
  • 5
  • 37
  • 71
24
votes
1 answer

Building a iOS app with Fastlane inside Docker

I'm trying to streamline my iOS development builds and read about Docker. If I understood it right, I could create an image that would include all the dependencies and my fellow devs could just pull it and build inside it. Point is now, does this…
K..
  • 4,044
  • 6
  • 40
  • 85
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
22
votes
9 answers

Fastlane Apple Generic versioning not enabled in this project

What I’m doing is trying to make bitbucket pipline do my iOS CD, I included docker fastlanetools/fastlane image and in the steps i pull and run the docker image everything is okay and i was able to let fastlane command work by calling fastlane beta…
ANeme
  • 731
  • 5
  • 19
21
votes
3 answers

Provisioning profile “match x” doesn't include signing certificate “Apple Distribution: Company (ID)” when using fastlane match

This error was encountered while trying to build one of our apps that had signing via fastlane match set up.
Zach Babb
  • 588
  • 1
  • 3
  • 12
20
votes
2 answers

Xcodebuild - Skip Finished requesting crash reports. Continuing with testing

I'm running a CI machine with the Xcode. The tests are triggered using fastlane gym. I see this line in the output: 2019-05-27 16:04:28.417 xcodebuild[54605:1482269] [MT] IDETestOperationsObserverDebug: (A72DBEA3-D13E-487E-9D04-5600243FF617) …
Richard Topchii
  • 7,075
  • 8
  • 48
  • 115
20
votes
3 answers

Fastlane stuck forever when run command fastlane init

I am using fastlane with xcode 9 and I got a problem with fastlane (2.95.0). When i run command fastlane init it shows me 4 options to choose. And then i chose option number 4 but it stuck forever. How to solve this problem?
seyha
  • 554
  • 5
  • 16
19
votes
0 answers

Fastlane selecting wrong provisioning profile

I've configured my iOS project with 2 targets and several configurations (6 for the 1st target, debug and release for the 2nd target). Each of the release configurations has different bundleID, hence the appropriate adhoc distribution provisioning…
izik461
  • 1,131
  • 12
  • 32
19
votes
1 answer

bundler: failed to load command: fastlane

This is the output of fastlane env command when I run with Jenkins. SDK and fastlane setup is in Docker Container. [09:11:28]: [33mGet started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile[0m `/`…
AWS Coder
  • 455
  • 1
  • 8
  • 13
19
votes
3 answers

Updating fastlane fails: signet requires Ruby version >= 2.4.0

I'm unable to update fastlane. When I execute fastlane update_fastlane I get the following error. ERROR: Error installing fastlane: signet requires Ruby version >= 2.4.0. When I execute ruby -v I get ruby 2.6.5p114 (2019-10-01 revision 67812)…
gdingenen
  • 303
  • 3
  • 12
19
votes
0 answers

Fastlane failing tests on Jenkins

Im trying to run fastlane scan on Jenkins, the tests execute well, pass, but on the last part it seems to fail because it can't access or start the simulator : [32;1m Executed 337 tests, with 0 failures (0 unexpected) in 5.657 (5.702)…
Vinícius Albino
  • 527
  • 1
  • 7
  • 23
19
votes
4 answers

Fastlane windows cannot installing

How to install fastlane in windows? i installed rubygems , but i dont know how to install fastlane on windows. please tell me how to install fastlane in windows?
Elangovan S
  • 192
  • 1
  • 1
  • 12
19
votes
2 answers

XCTests failing to launch app in simulator intermittently

Has anyone experienced and fixed: XCTests are failing intermittently to launch app in the simulator for UI testing (XCUI). I am running through fastlane, different tests appear to fail each test run. OSX: 10.12.3 iOS simulator: 10.0 Xcode…
David Karlsson
  • 9,396
  • 9
  • 58
  • 103
18
votes
3 answers

How to un-set `fastlane_tmp_keychain-db` as the default keychain?

I'm not entirely sure how I get into this situation, but fastlane_tmp_keychain-db becomes my default keychain after a build, and I can't figure out how to un-set it. There are no options here to change the defaults. Why did fastlane do this and…
Roman Starkov
  • 59,298
  • 38
  • 251
  • 324
18
votes
3 answers

How to create aab (bundle) via Fastlane?

I want to create aab (bundle) via Fastlane, but so far I was able to create only apk, here is my lane now, how to create aab? lane :beta do store_password = prompt(text: "Signing Store Password: ", secure_text: true) key_password =…
Lucky_girl
  • 4,543
  • 6
  • 42
  • 82
1
2
3
96 97