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
104
votes
7 answers

Xcode ERROR ITMS-90783: "Missing bundle display name"

Today I started to receive this error with fastlane and Xcode: ERROR ITMS-90783: "Missing bundle display name. The Info.plist key CFBundleDisplayName is missing or has an empty value in the bundle with bundle identifier 'com.id'." It was ok…
Nike Kov
  • 12,630
  • 8
  • 75
  • 122
83
votes
7 answers

How to get iTunes connect Team ID and Team name?

I'm writing down an Appfile for fastlane, my problem is I already have the team_name and team_id in Apple Dev Center but I can't get the iTunes Connect ID/itc_team_id. I'm working with different team. How do I get it? Any guide would be great.…
Calvin Ferrando
  • 3,794
  • 3
  • 16
  • 26
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
59
votes
2 answers

Unable to locate Xcode. Please make sure to have Xcode installed on your machine

I'm new to Fastlane. Does anyone know how to fix this error from running fastlane ios myLane. The output: [12:50:11]: fastlane finished with errors [!] Unable to locate Xcode. Please make sure to have Xcode installed on your machine But I have…
wzso
  • 3,482
  • 5
  • 27
  • 48
59
votes
17 answers

Fastlane command not found

I am trying to install fastlane. I have Xcode installed. I installed fastlane using the command sudo gem install fastlane. I now go into my project folder and type fastlane init and get the error: -bash: fastlane: command not found. I see that…
43
votes
2 answers

Device 'iPad Pro (12.9-inch) (2nd generation)' not in list of available simulators

I was hoping someone would know what to do with this error I am receiving after running fastlane snapshot Error setting value '["iPhone 11 Pro Max", "iPhone 8 Plus", "iPad Pro (12.9-inch) (2nd generation)", "iPad Pro (12.9-inch) (3rd generation)"]'…
BB193DEV
  • 432
  • 4
  • 11
39
votes
4 answers

Fastlane: proper way to add a device to provisioning?

I am using fastlane to handle provisioning. This is what I did: match nuke development match nuke distribution then in a lane I have this for each bundleId I need to provision for: match(type: "development", app_identifier: "com.myCompany.myApp",…
zumzum
  • 17,984
  • 26
  • 111
  • 172
35
votes
1 answer

Is there a command to get latest build number from Firebase App Distribution just like TestFlight latest_testflight_build_number?

latest_testflight_build_number allows easy build number bump example increment_build_number({ build_number: latest_testflight_build_number + 1 }) Is there something similar for Firebase App Distribution? For example, I've uploaded a build…
35
votes
2 answers

How can I call lanes with parameters from within my lane?

I have a Fastfile,and I want to all lanes with parameters from within my lane .How can do this? Just like this: lane :my_lane do other_lane paramter1_name:"1" parameter2:"2" end
H.WZ
  • 457
  • 1
  • 4
  • 9
34
votes
4 answers

how to renew expired certificate with fastlane?

My iOS certificate is stored in GitHub and it is expired, the failure message in circleci progress is that ‘Your certificate 'xxxxxxx.cer' is not valid, please check end date and renew it if necessary’. Do I need to create a new certificate, or…
CleanMac
  • 473
  • 1
  • 4
  • 6
31
votes
7 answers

Fastlane failing with error "Cannot obtain the content provider public id. Please specify a provider short name using the -asc_provider option."

I created an iOS test flight build using Fastlane, and I got this strange error, not sure why because it was working fine yesterday and now without any change in Fastlane configuration it gives me an error while uploading the build to the Apple App…
Haresh Ghatala
  • 1,996
  • 17
  • 25
31
votes
5 answers

Sign in with the app-specific password you generated. If you forgot the app-specific password or need to create a new one -22938

Problem While I'm trying to send my application via Fastlane I face with this error: Sign in with the app-specific password you generated. If you forgot the app-specific password or need to create a new one, go to appleid.apple.com…
MGY
  • 7,245
  • 5
  • 41
  • 74
31
votes
4 answers

Where is the screenshot file from Xcode UI Test?

I'm interested how to find the location of a screenshot which is created during UI Tests of my app. I would like to understand how Fastlane Snapshot grabs this screenshot. After couple of hours of research I can't find location of those screenshots.
Robert
  • 3,790
  • 1
  • 27
  • 46
28
votes
7 answers

How to create app file with fastlane for simulator

I need to create with fastlane .app file (or .ipa file if it works to) which I could next drag and drop to simulator on another computer. I tried do it with gym or with xcodebuild parameters but I don't know how to do it. For now I do it in this…
Piotr Wasilewicz
  • 1,751
  • 2
  • 15
  • 26
26
votes
3 answers

Two-factor Authentication With fastlane

Im releasing my app to firebase distribution throw Fastlane while using CI machine. Im facing an issue with the 2FA. Im using Match to retrieve my certificates. This is what I have under "Appfile" app_identifier "com.example.example" # the bundle…
1
2 3
96 97